Fixed crash when using last item in inventory

This commit is contained in:
JappaWakka 2025-01-25 14:10:20 +01:00
parent 2e0110ae40
commit a13b0c50ae
1 changed files with 11 additions and 2 deletions

View File

@ -1000,9 +1000,18 @@ Public Class NewInventoryScreen
cItem.Use()
LoadItems()
If Me.PreScreen.Identification = Screen.Identifications.BattleScreen Then
Core.Player.UsedItemsToCheckScriptDelayFor.Add(_items(ItemIndex + PageIndex * 10).ItemID)
If cItem.IsGameModeItem = True Then
Core.Player.UsedItemsToCheckScriptDelayFor.Add(cItem.gmID)
Else
Core.Player.UsedItemsToCheckScriptDelayFor.Add(cItem.ID.ToString)
End If
Else
Core.Player.CheckItemCountScriptDelay(_items(ItemIndex + PageIndex * 10).ItemID)
If cItem.IsGameModeItem = True Then
Core.Player.CheckItemCountScriptDelay(cItem.gmID)
Else
Core.Player.CheckItemCountScriptDelay(cItem.ID.ToString)
End If
End If
Case INFO_ITEM_OPTION_GIVE