From e3863946cf55a1d2d4767174c44f17918df4df0d Mon Sep 17 00:00:00 2001 From: Isaiah Date: Fri, 6 Oct 2023 17:37:32 -0700 Subject: Fix Croesus overlay (#844) --- .../moulberry/notenoughupdates/miscfeatures/DungeonNpcProfitOverlay.java | 1 + 1 file changed, 1 insertion(+) (limited to 'src') diff --git a/src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/DungeonNpcProfitOverlay.java b/src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/DungeonNpcProfitOverlay.java index 8bd5e84d..3c2358cf 100644 --- a/src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/DungeonNpcProfitOverlay.java +++ b/src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/DungeonNpcProfitOverlay.java @@ -366,6 +366,7 @@ public class DungeonNpcProfitOverlay { ItemResolutionQuery.filterInternalNameCandidates(ItemResolutionQuery.findInternalNameCandidatesForDisplayName( trimmedLine.replace("Book", "")), trimmedLine, true); if (id == null) return null; + if (id.equals("DUNGEON_CHEST_KEY")) return null; return new SkyblockItem(id, 1); } } -- cgit