Storage System fix

This commit is contained in:
JappaWakka 2023-07-18 19:16:31 +02:00
parent 7f530ab8b7
commit 51359c7233
1 changed files with 1 additions and 1 deletions

View File

@ -2187,7 +2187,7 @@ Public Class StorageSystemFilterScreen
Dim l As List(Of Pokemon) = Me._storageSystemScreen.GetPokemonList(True, False)
For Each p As Pokemon In l
If p.GetName(0).ToString().ToUpper() = chosenLetter And pokemonList.Contains(p.GetName()) = False Then
If p.GetName().ToString().ToUpper() = chosenLetter And pokemonList.Contains(p.GetName()) = False Then
pokemonList.Add(p.GetName)
End If
Next