From 6c1f0f8bf4b3c2bd53e12bee2230e281c0eb6f69 Mon Sep 17 00:00:00 2001 From: Michael Shirt Date: Wed, 28 Sep 2016 22:41:34 -0600 Subject: [PATCH] Added flag check for dream 2 Will probably add more checks as dreams 3 and 4 are done --- scripts/SaveLoad.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/SaveLoad.rb b/scripts/SaveLoad.rb index 1016d1a..1afeadd 100644 --- a/scripts/SaveLoad.rb +++ b/scripts/SaveLoad.rb @@ -61,9 +61,9 @@ end def real_load load # Restore BGM and BGS - # switch 181 means its time for a dream, so no BGM + # switch 181 or 183 means its time for a dream, so no BGM - if !$game_switches[181] + if !($game_switches[181] || $game_switches[183]) $game_system.bgm_play($game_system.playing_bgm) $game_system.bgs_play($game_system.playing_bgs) end