Fixed items not being removed from inventory

This commit is contained in:
JappaWakka 2023-01-30 19:45:36 +01:00
parent 1503cecb1a
commit 74d5981c22
1 changed files with 7 additions and 0 deletions

View File

@ -99,6 +99,13 @@ Public Class PlayerInventory
End If
End If
Next
Else
For Each c As ItemContainer In Me
If c.ItemID = ID Then
Me.Remove(c)
Exit Sub
End If
Next
End If
End Sub