Added flag check for dream 3

This commit is contained in:
Michael Shirt 2016-10-02 11:44:14 -06:00
parent 91f95bcd06
commit 21104415cf
1 changed files with 2 additions and 2 deletions

View File

@ -66,9 +66,9 @@ end
def real_load def real_load
load load
# Restore BGM and BGS # 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.bgm_play($game_system.playing_bgm)
$game_system.bgs_play($game_system.playing_bgs) $game_system.bgs_play($game_system.playing_bgs)
end end