Bugfix in forge contains

This commit is contained in:
2024-04-15 14:33:33 -04:00
parent b4824c69b8
commit a2484f94eb
2 changed files with 1 additions and 7 deletions
@@ -1353,12 +1353,6 @@ public class CharacterItemManager {
return inventory.contains(item);
}
public synchronized boolean forgeContains(Item item, NPC vendor) {
if (item.template.item_type.equals(ItemType.GOLD))
return (this.getGoldInventory() != null && this.goldInventory.getObjectUUID() == item.getObjectUUID());
return ForgeManager.vendorItemLookup.get(vendor).contains(item);
}
public synchronized boolean vaultContains(Item item) {
if (item.template.item_type.equals(ItemType.GOLD))
return (this.getGoldVault() != null && this.goldVault.getObjectUUID() == item.getObjectUUID());