From 30e53b999870a57e9089388f5c4032e11aa0f474 Mon Sep 17 00:00:00 2001 From: Michael Shirt Date: Mon, 3 Oct 2016 11:03:45 -0600 Subject: [PATCH] Added another check for a dream-time flag (last one) --- scripts/SaveLoad.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/SaveLoad.rb b/scripts/SaveLoad.rb index 9ad67cd..3df65f6 100644 --- a/scripts/SaveLoad.rb +++ b/scripts/SaveLoad.rb @@ -68,7 +68,7 @@ def real_load # Restore BGM and BGS # switch 181 or 183 or 186 means its time for a dream, so no BGM - if !($game_switches[181] || $game_switches[183] || $game_switches[186]) + if !($game_switches[181] || $game_switches[183] || $game_switches[186] || $game_switches[188]) $game_system.bgm_play($game_system.playing_bgm) $game_system.bgs_play($game_system.playing_bgs) end