From df476f63ccde2ff0c17d048e582ffa75e0d66088 Mon Sep 17 00:00:00 2001 From: jani270 <69345714+jani270@users.noreply.github.com> Date: Fri, 3 Nov 2023 22:12:28 +0100 Subject: Added dungeon equipment to the armor filter in the item list (#918) --- src/main/java/io/github/moulberry/notenoughupdates/NEUOverlay.java | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'src/main') diff --git a/src/main/java/io/github/moulberry/notenoughupdates/NEUOverlay.java b/src/main/java/io/github/moulberry/notenoughupdates/NEUOverlay.java index e7486dba..4070169b 100644 --- a/src/main/java/io/github/moulberry/notenoughupdates/NEUOverlay.java +++ b/src/main/java/io/github/moulberry/notenoughupdates/NEUOverlay.java @@ -1398,7 +1398,12 @@ public class NEUOverlay extends Gui { "GLOVES", "CLOAK", "NECKLACE", - "BRACELET" + "BRACELET", + "DUNGEON BELT", + "DUNGEON GLOVES", + "DUNGEON CLOAK", + "DUNGEON NECKLACE", + "DUNGEON BRACELET" ) >= 0; } else if (getSortMode() == SORT_MODE_ACCESSORY) { return checkItemType(item.get("lore").getAsJsonArray(), "ACCESSORY", "HATCCESSORY", "DUNGEON ACCESSORY") >= 0; -- cgit