From cd8cce30a0512521fa3be558b804f1cfe021be43 Mon Sep 17 00:00:00 2001 From: randy Date: Sat, 16 Aug 2025 20:06:07 -0600 Subject: [PATCH] Fixed Plain Satchel not looting noted items --- .../src/main/core/game/node/entity/npc/drop/NPCDropTables.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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))) {