diff --git a/Server/src/main/core/game/node/entity/npc/drop/NPCDropTables.java b/Server/src/main/core/game/node/entity/npc/drop/NPCDropTables.java index 4f55c9bd1..5b3567364 100644 --- a/Server/src/main/core/game/node/entity/npc/drop/NPCDropTables.java +++ b/Server/src/main/core/game/node/entity/npc/drop/NPCDropTables.java @@ -275,7 +275,7 @@ public final class NPCDropTables { private boolean handleSatchel(Player player, Item item) { for (int satchelId = 10877; satchelId <= 10882; satchelId++) { if (inEquipmentOrInventory(player,satchelId,1) && SnowscapeSatchelListener.Companion.isAllowed(player,satchelId,unnote(item).getId())){ - if (satchelId == 10877 && !player.plainSatchel.contains(item.getId(),1)) { + if (satchelId == 10877 && !player.plainSatchel.contains(unnote(item).getId(),1)) { continue; } if (SnowscapeSatchelListener.Companion.getSatchel(player, satchelId).add(unnote(item))) {