From 21104415cfc257d4af7feee8080cc647903b3c17 Mon Sep 17 00:00:00 2001 From: Michael Shirt Date: Sun, 2 Oct 2016 11:44:14 -0600 Subject: [PATCH] Added flag check for dream 3 --- scripts/SaveLoad.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/SaveLoad.rb b/scripts/SaveLoad.rb index f279c0d..9ad67cd 100644 --- a/scripts/SaveLoad.rb +++ b/scripts/SaveLoad.rb @@ -66,9 +66,9 @@ end def real_load load # Restore BGM and BGS - # switch 181 or 183 means its time for a dream, so no BGM + # switch 181 or 183 or 186 means its time for a dream, so no BGM - if !($game_switches[181] || $game_switches[183]) + if !($game_switches[181] || $game_switches[183] || $game_switches[186]) $game_system.bgm_play($game_system.playing_bgm) $game_system.bgs_play($game_system.playing_bgs) end