Fix Party index resetting when it shouldn't

This commit is contained in:
JappaWakka 2023-07-17 18:01:48 +02:00
parent 06a76218c7
commit d80a9170c1
1 changed files with 1 additions and 1 deletions

View File

@ -121,7 +121,7 @@ Public Class PartyScreen
If _index >= PokemonList.Count - 1 Then
If _index > PokemonList.Count - 1 Then
_index = 0
End If
_cursorDest = GetBoxPosition(_index)