Makes it possible to download sprites at runtime

This commit is contained in:
chardub
2023-02-02 21:43:05 -05:00
parent ee2e718361
commit ad2e6e728c
7 changed files with 43 additions and 28 deletions

View File

@@ -44,7 +44,7 @@ def handleReplaceExistingSprites()
end
def pbCallTitle
return Scene_DebugIntro.new if $DEBUG
#return Scene_DebugIntro.new if $DEBUG
return Scene_Intro.new
end
@@ -144,7 +144,11 @@ def mainFunctionDebug
Graphics.update
Graphics.freeze
clearTempFolder()
sortCustomBattlers()
begin
sortCustomBattlers()
rescue
echo "failed to sort custom battlers"
end
$scene = pbCallTitle
$scene.main until $scene.nil?
Graphics.transition(20)