From d80a9170c1e3e8df2d666e002ca19dad8ea2ca18 Mon Sep 17 00:00:00 2001 From: JappaWakka Date: Mon, 17 Jul 2023 18:01:48 +0200 Subject: [PATCH] Fix Party index resetting when it shouldn't --- P3D/Screens/Pokemon/PartyScreen.vb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/P3D/Screens/Pokemon/PartyScreen.vb b/P3D/Screens/Pokemon/PartyScreen.vb index 006948b8e..b401bb6be 100644 --- a/P3D/Screens/Pokemon/PartyScreen.vb +++ b/P3D/Screens/Pokemon/PartyScreen.vb @@ -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)