bunch of fixes that had to be combined into one commit because github doesn't like large files and I accidentally included a large file

This commit is contained in:
chardub
2023-01-06 19:02:05 -05:00
parent 4f628e1b32
commit e7854f8afb
21 changed files with 21 additions and 8 deletions

View File

@@ -411,6 +411,11 @@ class HallOfFame_Scene
Input.update
pbUpdate
end
while !(waitForInput)
Graphics.update
Input.update
pbUpdate
end
setPokemonSpritesOpacity(-1, OPACITY) if !SINGLEROW
createTrainerBattler
end
@@ -432,6 +437,14 @@ class HallOfFame_Scene
end
end
def waitForInput
if Input.trigger?(Input::USE) || Input.trigger?(Input::BACK)
return true
end
return false
end
def pbUpdatePC
# Change the team
if @battlerIndex >= @hallEntry.size