diff options
author | Isaiah <izayikhan@gmail.com> | 2023-10-06 17:37:32 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-07 02:37:32 +0200 |
commit | e3863946cf55a1d2d4767174c44f17918df4df0d (patch) | |
tree | 9b5eee345634a3ab3ce17e4f1ff3039f894faae3 | |
parent | 810a25eec4e6712acee145526d3017dd118b8492 (diff) | |
download | NotEnoughUpdates-e3863946cf55a1d2d4767174c44f17918df4df0d.tar.gz NotEnoughUpdates-e3863946cf55a1d2d4767174c44f17918df4df0d.tar.bz2 NotEnoughUpdates-e3863946cf55a1d2d4767174c44f17918df4df0d.zip |
Fix Croesus overlay (#844)
-rw-r--r-- | src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/DungeonNpcProfitOverlay.java | 1 |
1 files changed, 1 insertions, 0 deletions
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); } } |