fixes ItemContainerChanged event
This commit is contained in:
@@ -82,4 +82,16 @@ public enum InventoryID
|
||||
{
|
||||
return id;
|
||||
}
|
||||
|
||||
public static InventoryID getValue(int value)
|
||||
{
|
||||
for (InventoryID e: InventoryID.values())
|
||||
{
|
||||
if (e.id == value)
|
||||
{
|
||||
return e;
|
||||
}
|
||||
}
|
||||
return null;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user