Remove unnecessary .ToString

This commit is contained in:
JappaWakka 2023-06-14 19:10:27 +02:00
parent db35572eb1
commit 5617e94f6f
1 changed files with 1 additions and 1 deletions

View File

@ -1112,7 +1112,7 @@
Private Shared Sub UseItem(ByVal PokeIndex As Integer)
Dim Pokemon As Pokemon = Core.Player.Pokemons(PokeIndex)
Dim Item As Item = Item.GetItemByID(TempItemID.ToString)
Dim Item As Item = Item.GetItemByID(TempItemID)
If Item.UseOnPokemon(PokeIndex) = True Then
TempBattleScreen.BattleQuery.Clear()