From 945c8a3f71f5f6f3d4ab96130217ef14be1974ae Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Wed, 13 Jun 2018 00:41:02 +0200 Subject: [PATCH] removed the dependence of stop_game on switchWhat with CAP_DAILY --- system.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system.cpp b/system.cpp index f06eeb2f..3a73ff3f 100644 --- a/system.cpp +++ b/system.cpp @@ -1106,7 +1106,7 @@ void stop_game() { clearMemory(); game_active = false; #if CAP_DAILY - if(daily::on && !among(switchWhat, rg::daily, rg::daily_off)) + if(daily::on) daily::turnoff(); #endif }