From f69fde8a3a2b9667b488fe41034a5368b7da332a Mon Sep 17 00:00:00 2001 From: FatBoy-DOTC Date: Wed, 14 Feb 2024 22:02:04 -0600 Subject: [PATCH] all items now AutoID --- src/engine/gameManager/LootManager.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/engine/gameManager/LootManager.java b/src/engine/gameManager/LootManager.java index 57164433..0760b057 100644 --- a/src/engine/gameManager/LootManager.java +++ b/src/engine/gameManager/LootManager.java @@ -301,9 +301,10 @@ public enum LootManager { MobLoot toAdd = getGenTableItem(tableID, mob); - if (toAdd != null) + if (toAdd != null) { + toAdd.setIsID(true); mob.getCharItemManager().addItemToInventory(toAdd); - + } } catch (Exception e) { //TODO chase down loot generation error, affects roughly 2% of drops int i = 0;