Fixed Battle Tower/Cups/Palace, fixed bug when using Metronome, fixed bad AI for Conversion/Conversion 2

This commit is contained in:
Maruno17
2021-05-04 20:36:49 +01:00
parent b563e73027
commit 3d88b85f56
10 changed files with 151 additions and 140 deletions

View File

@@ -748,9 +748,10 @@ class PokemonParty_Scene
end
when Input::UP
if currentsel >= Settings::MAX_PARTY_SIZE
begin
currentsel -= 1
while currentsel > 0 && currentsel < Settings::MAX_PARTY_SIZE && !@party[currentsel]
currentsel -= 1
end while currentsel > 0 && !@party[currentsel]
end
else
begin
currentsel -= 2