From b38caa0ec862ff49efb0b7d0aac57ec3a8fa4a7c Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Fri, 22 Nov 2019 23:10:02 +0100 Subject: [PATCH] fixed a bug where disabling the cheat mode while the land is changed in Geometry Experiments would produce weird lands --- menus.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/menus.cpp b/menus.cpp index fb248e7a..a0b3a05f 100644 --- a/menus.cpp +++ b/menus.cpp @@ -388,7 +388,7 @@ EX void enable_cheat() { }); else { popScreen(); - firstland = princess::challenge ? laPalace : laIce; + specialland = firstland = princess::challenge ? laPalace : laIce; restart_game(); } }