Added SKIP_CONTINUE_SCREEN Setting, fix message newline visual bug at slow text speeds, removed Bag rearranging

This commit is contained in:
Maruno17
2023-10-14 18:32:18 +01:00
parent 25f85a9a8b
commit 389d43941d
5 changed files with 382 additions and 327 deletions

View File

@@ -279,6 +279,14 @@ class PokemonLoadScreen
end
def pbStartLoadScreen
if $DEBUG && !FileTest.exist?("Game.rgssad") && Settings::SKIP_CONTINUE_SCREEN
if @save_data.empty?
Game.start_new
else
Game.load(@save_data)
end
return
end
commands = []
cmd_continue = -1
cmd_new_game = -1