diff options
-rw-r--r-- | rules.js | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -1881,6 +1881,7 @@ states.retreat = { } } gen_action(view, 'undo'); + gen_action(view, 'block', game.who); }, space: function (to) { let from = game.location[game.who]; @@ -1900,6 +1901,9 @@ states.retreat = { eliminate_block(game.who); resume_battle(); }, + block: function () { + resume_battle(); + }, undo: function () { resume_battle(); }, |