diff options
author | jani270 <69345714+jani270@users.noreply.github.com> | 2023-11-03 22:12:28 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-04 08:12:28 +1100 |
commit | df476f63ccde2ff0c17d048e582ffa75e0d66088 (patch) | |
tree | 1584f1402ebd0f92d3d55a8610bfe45cfe552ef2 | |
parent | da0e3fccd7e8f22bdab453609ec70ab7f59744f8 (diff) | |
download | NotEnoughUpdates-df476f63ccde2ff0c17d048e582ffa75e0d66088.tar.gz NotEnoughUpdates-df476f63ccde2ff0c17d048e582ffa75e0d66088.tar.bz2 NotEnoughUpdates-df476f63ccde2ff0c17d048e582ffa75e0d66088.zip |
Added dungeon equipment to the armor filter in the item list (#918)
-rw-r--r-- | src/main/java/io/github/moulberry/notenoughupdates/NEUOverlay.java | 7 |
1 files changed, 6 insertions, 1 deletions
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; |