From 5eb84dd9ebd6f0a860164629345c5ef2efda96b7 Mon Sep 17 00:00:00 2001 From: JezuzLizard Date: Fri, 20 Mar 2020 18:38:47 -0700 Subject: [PATCH] fixed random settings not working --- GriefFix/main.gsc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/GriefFix/main.gsc b/GriefFix/main.gsc index cb7eb67..e5c2f98 100644 --- a/GriefFix/main.gsc +++ b/GriefFix/main.gsc @@ -65,6 +65,7 @@ gameSettings() //map rotate feature overrides the normal restart if active level.map_rotate = true; + return level.random_game_settings; } gameDelayFunctionsAndVars() @@ -385,7 +386,7 @@ mapChange( startlocation ) randomizedSettings() { - if ( !level.random_game_settings ) + if ( !gameSettings() ) { return; }