diff options
author | Tor Andersson <tor@ccxvii.net> | 2024-07-05 12:27:59 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2024-07-05 12:27:59 +0200 |
commit | 596272f6fd44691ed1c893dcaf19c5498e389699 (patch) | |
tree | bc170a2f4e9111ef372dd255c1eb0b1445fb0bff /rules.ts | |
parent | 69fbfe3f0d79a374cc5bc2366358a19a4656db5c (diff) | |
download | plantagenet-596272f6fd44691ed1c893dcaf19c5498e389699.tar.gz |
add undo step when ending a lord's muster with done
Diffstat (limited to 'rules.ts')
-rw-r--r-- | rules.ts | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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" |