summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rules.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/rules.js b/rules.js
index d62a18b..c646b6d 100644
--- a/rules.js
+++ b/rules.js
@@ -3358,7 +3358,7 @@ states.confirm_end_move = {
function goto_retroactive_foul_weather() {
if (game.options.retroactive && game.retro_foul_weather) {
- console.log("RETRO REWIND")
+ // console.log("RETRO REWIND")
let state_start = game.retro_foul_weather
delete game.retro_foul_weather
@@ -3392,7 +3392,7 @@ states.foul_weather = {
},
play_event(c) {
if (game.options.retroactive) {
- console.log("RETRO STAY")
+ // console.log("RETRO STAY")
delete game.retro_foul_weather
}
play_card(c)
@@ -3419,7 +3419,7 @@ states.foul_weather = {
},
pass() {
if (game.options.retroactive) {
- console.log("RETRO PASS")
+ // console.log("RETRO PASS")
load_game_state(JSON.parse(game.retro_foul_weather))
} else {
game.move.used = 0