summaryrefslogtreecommitdiff
path: root/rules.ts
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2024-04-23 22:41:13 +0200
committerTor Andersson <tor@ccxvii.net>2024-04-23 22:54:01 +0200
commit3967b40ee7eae34fda5a1a2ce09f13902f3e5568 (patch)
tree7a7a669391b7ddff2164eb5b8f71ca9dd1522c2e /rules.ts
parent7eb5e4d7e1449d089ddce3e9f22fee80f26ab27d (diff)
downloadplantagenet-3967b40ee7eae34fda5a1a2ce09f13902f3e5568.tar.gz
fix rising wages with normal levy troops
Diffstat (limited to 'rules.ts')
-rw-r--r--rules.ts9
1 files changed, 1 insertions, 8 deletions
diff --git a/rules.ts b/rules.ts
index ac81b66..81dd6dd 100644
--- a/rules.ts
+++ b/rules.ts
@@ -2929,12 +2929,6 @@ states.muster_lord = {
levy_troops() {
push_undo()
push_the_kings_name()
-
- if (is_event_in_play(EVENT_LANCASTER_RISING_WAGES) && game.active === YORK) {
- goto_rising_wages()
- return
- }
-
do_levy_troops()
},
@@ -11504,8 +11498,7 @@ states.rising_wages = {
coin(lord) {
push_undo()
add_lord_assets(lord, COIN, -1)
- logi(`${EVENT_LANCASTER_RISING_WAGES}`)
- log("York paid 1 Coin to Levy troops")
+ logevent(EVENT_LANCASTER_RISING_WAGES)
end_rising_wages()
},
}