diff options
author | Tor Andersson <tor@ccxvii.net> | 2024-04-23 22:41:13 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2024-04-23 22:54:01 +0200 |
commit | 3967b40ee7eae34fda5a1a2ce09f13902f3e5568 (patch) | |
tree | 7a7a669391b7ddff2164eb5b8f71ca9dd1522c2e /rules.ts | |
parent | 7eb5e4d7e1449d089ddce3e9f22fee80f26ab27d (diff) | |
download | plantagenet-3967b40ee7eae34fda5a1a2ce09f13902f3e5568.tar.gz |
fix rising wages with normal levy troops
Diffstat (limited to 'rules.ts')
-rw-r--r-- | rules.ts | 9 |
1 files changed, 1 insertions, 8 deletions
@@ -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() }, } |