Adding real_load function
Just so I have something I can call ingame to load the "real save"
This commit is contained in:
parent
876316ac22
commit
c0bd0ff2f7
|
|
@ -57,3 +57,14 @@ def load
|
||||||
end
|
end
|
||||||
return true
|
return true
|
||||||
end
|
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
|
||||||
Loading…
Reference in New Issue