Fix burning amulet

This commit is contained in:
Owain van Brakel
2019-12-19 11:34:38 +01:00
parent c95e40d598
commit 000f714cdd

View File

@@ -82,7 +82,7 @@ public enum ItemType
{
return ItemType.COINS;
}
if (item.getName().toLowerCase().contains("ring of") || item.getName().toLowerCase().contains("amulet of") ||
if (item.getName().toLowerCase().contains("ring of") || item.getName().toLowerCase().contains("amulet") ||
item.getName().toLowerCase().contains("bracelet") || item.getName().toLowerCase().contains("necklace"))
{
return ItemType.JEWELLERY;