From c0bd0ff2f71a62ccc657180e19881a5885ab24fc Mon Sep 17 00:00:00 2001 From: Michael Shirt Date: Fri, 23 Sep 2016 17:55:53 -0600 Subject: [PATCH] Adding real_load function Just so I have something I can call ingame to load the "real save" --- scripts/SaveLoad.rb | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/scripts/SaveLoad.rb b/scripts/SaveLoad.rb index 57c1334..76a19fa 100644 --- a/scripts/SaveLoad.rb +++ b/scripts/SaveLoad.rb @@ -57,3 +57,14 @@ def load end return true end + +def real_load + load + # Restore BGM and BGS + $game_system.bgm_play($game_system.playing_bgm) + $game_system.bgs_play($game_system.playing_bgs) + # Update map (run parallel process event) + $game_map.update + # Switch to map screen + $scene = Scene_Map.new +end \ No newline at end of file