summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rules.js30
1 files changed, 15 insertions, 15 deletions
diff --git a/rules.js b/rules.js
index 9690e6a..21f46a6 100644
--- a/rules.js
+++ b/rules.js
@@ -9,6 +9,21 @@ let game = null
let view = null
let states = {}
+function check_london_protected() {
+// TODO IF HENRY/MARGARET ARE MUSTERED IT DOES NOT CHANGE FAVOUR
+// ONLY L17/L18 and Pillage will cancel that event
+//(it is annuled when london go to neutral
+ if (game.state === "pillage") {
+ return false
+ }
+ if (game.flags.london_for_york === 1 && game.where === LOC_LONDON) {
+ return true
+ }
+ else {
+ return false
+ }
+}
+
// === CONSTANTS ===
const data = require("./data.js")
@@ -10683,21 +10698,6 @@ states.london_for_york = {
},
}
-function check_london_protected() {
-// TODO IF HENRY/MARGARET ARE MUSTERED IT DOES NOT CHANGE FAVOUR
-// ONLY L17/L18 and Pillage will cancel that event
-//(it is annuled when london go to neutral
- if (game.state === "pillage") {
- return false
- }
- if (game.flags.london_for_york === 1 && game.where === LOC_LONDON) {
- return true
- }
- else {
- return false
- }
-}
-
// === EVENT: SHE-WOLF OF FRANCE ===
function goto_york_event_shewolf_of_france() {