diff options
-rw-r--r-- | rules.js | 1 | ||||
-rw-r--r-- | rules.ts | 3 |
2 files changed, 4 insertions, 0 deletions
@@ -2700,6 +2700,7 @@ states.muster_lord = { game.levy_flags.loyalty_and_trust = 0; }, done() { + push_undo(); set_lord_moved(game.command, 1); game.command = NOBODY; game.state = "muster"; @@ -1,5 +1,7 @@ "use strict" +// TODO: manually trigger percy's power (make it optional) + // === TYPES === declare function require(name: string): any @@ -3328,6 +3330,7 @@ states.muster_lord = { }, done() { + push_undo() set_lord_moved(game.command, 1) game.command = NOBODY game.state = "muster" |