Fix Party index resetting when it shouldn't
This commit is contained in:
parent
06a76218c7
commit
d80a9170c1
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue