From ab9856ef220e3705962b9ffcfedd8406359c3146 Mon Sep 17 00:00:00 2001 From: Michael Shirt Date: Tue, 4 Oct 2016 01:33:18 -0600 Subject: [PATCH] Made loading respect the fixed camera Switch 100 is the fixed camera switch, this makes sure the game won't try to focus on the player for the first frame. --- scripts/SaveLoad.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/SaveLoad.rb b/scripts/SaveLoad.rb index 3df65f6..47a725a 100644 --- a/scripts/SaveLoad.rb +++ b/scripts/SaveLoad.rb @@ -50,7 +50,9 @@ def load if $game_system.magic_number != $data_system.magic_number # Load map $game_map.setup($game_map.map_id) - $game_player.center($game_player.x, $game_player.y) + if !$game_switches[100] + $game_player.center($game_player.x, $game_player.y) + end end # Refresh party members $game_party.refresh