diff options
author | Tor Andersson <tor@ccxvii.net> | 2022-02-05 14:07:04 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-02-18 11:54:52 +0100 |
commit | 913ebbf2ade2b03f0190fa6e15f84e4a8581135e (patch) | |
tree | 093e00af6650fccab012ce12af6cb89b3c855b0a | |
parent | 3d0e292f8a262779c59ddd1b10910a62b92d328e (diff) | |
download | wilderness-war-913ebbf2ade2b03f0190fa6e15f84e4a8581135e.tar.gz |
Fix Diplomatic Revolution event.
-rw-r--r-- | rules.js | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -6222,9 +6222,9 @@ events.diplomatic_revolution = { return !game.events.quiberon; }, play() { - // TODO: pick a card from discard! game.events.diplo = 1; - end_action_phase(); + game.state = 'diplomatic_revolution'; + game.count = 1; } } |