diff options
Diffstat (limited to 'play.js')
-rw-r--r-- | play.js | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -133,6 +133,8 @@ function to_suit(c) { } function to_value(c) { + if (to_suit(c) === 4) + return 8 return c & 15 } @@ -973,7 +975,7 @@ function on_update() { action_button("end_turn", "End turn") confirm_action_button("confirm_end_movement", "End movement", - "You still have UNMOVED pieces.?") + "You have NOT moved ANY pieces!\nAre you sure you want to SKIP movement?") action_button("undo", "Undo") |