From 4868dc3891415beb4de81509f4051677461e450f Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Mon, 13 Jun 2022 23:44:47 +0200 Subject: Turn off retroactive foul weather logging. --- rules.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'rules.js') 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 -- cgit v1.2.3