mirror of
https://forgejo.xatacraft.ru/Sunshine/mkxp-sunshine.git
synced 2026-08-20 22:09:55 +00:00
Fixed missing lowercase $debug
This commit is contained in:
parent
91862d8bce
commit
19ab472f00
1 changed files with 2 additions and 1 deletions
|
|
@ -34,7 +34,7 @@ class Scene_Title
|
|||
# Make system object
|
||||
$game_system = Game_System.new
|
||||
# Skip title screen if debug mode
|
||||
if $DEBUG
|
||||
if $debug
|
||||
$game_map.update
|
||||
$scene = Scene_Map.new
|
||||
return
|
||||
|
|
@ -143,6 +143,7 @@ class Scene_Title
|
|||
$game_player = Game_Player.new
|
||||
$game_followers = []
|
||||
$game_oneshot = Game_Oneshot.new
|
||||
$game_fasttravel = Game_FastTravel.new
|
||||
# Set up initial party
|
||||
$game_party.setup_starting_members
|
||||
# Set up initial map position
|
||||
|
|
|
|||
Loading…
Reference in a new issue