mirror of
https://forgejo.xatacraft.ru/Sunshine/mkxp-sunshine.git
synced 2026-08-19 13:29:54 +00:00
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
1 changed files with 11 additions and 0 deletions
|
|
@ -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
|
||||
Loading…
Reference in a new issue