From 7a086d1d341f6c51a9857af439c3be9221b10fec Mon Sep 17 00:00:00 2001 From: jani270 <69345714+jani270@users.noreply.github.com> Date: Wed, 10 Nov 2021 21:01:24 +0100 Subject: Updated PV Hotm Texture and made itemlist tools category work with drills and gauntlet (#20) * Update pv_mining.png * Itemlist drills and gauntlet * My name --- Update Notes/2.1.md | 1 + .../github/moulberry/notenoughupdates/NEUOverlay.java | 2 +- .../resources/assets/notenoughupdates/pv_mining.png | Bin 4543 -> 4516 bytes 3 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Update Notes/2.1.md b/Update Notes/2.1.md index 468fc728..61ae2455 100644 --- a/Update Notes/2.1.md +++ b/Update Notes/2.1.md @@ -19,6 +19,7 @@ - Added a help menu to /neuec - Made it so treecap shows foraging xp instead of farming xp on the farming overlay - Made it so a jungle axe with cult will show the "farming" overlay +- Added Drills and Gauntlet to the itemlist tools category - jani ### **Bug Fixes** - Made titanium overlay and waypoints work with dwarven overlay off - "fixed" divan rarity in NEUAH (scuffed) diff --git a/src/main/java/io/github/moulberry/notenoughupdates/NEUOverlay.java b/src/main/java/io/github/moulberry/notenoughupdates/NEUOverlay.java index adf0df8b..ef2c14b9 100644 --- a/src/main/java/io/github/moulberry/notenoughupdates/NEUOverlay.java +++ b/src/main/java/io/github/moulberry/notenoughupdates/NEUOverlay.java @@ -1215,7 +1215,7 @@ public class NEUOverlay extends Gui { return internalname.matches(petRegex) && item.get("displayname").getAsString().contains("["); } else if (getSortMode() == SORT_MODE_TOOL) { return checkItemType(item.get("lore").getAsJsonArray(), - "SWORD", "BOW", "AXE", "PICKAXE", "FISHING ROD", "WAND", "SHOVEL", "HOE", "DUNGEON SWORD", "DUNGEON BOW") >= 0; + "SWORD", "BOW", "AXE", "PICKAXE", "FISHING ROD", "WAND", "SHOVEL", "HOE", "DUNGEON SWORD", "DUNGEON BOW", "DRILL", "GAUNTLET") >= 0; } else if (getSortMode() == SORT_MODE_ARMOR) { return checkItemType(item.get("lore").getAsJsonArray(), "HELMET", "CHESTPLATE", "LEGGINGS", "BOOTS", "DUNGEON HELMET", "DUNGEON CHESTPLATE", "DUNGEON LEGGINGS", "DUNGEON BOOTS") >= 0; } else if (getSortMode() == SORT_MODE_ACCESSORY) { diff --git a/src/main/resources/assets/notenoughupdates/pv_mining.png b/src/main/resources/assets/notenoughupdates/pv_mining.png index 3c0066e8..a183fe88 100644 Binary files a/src/main/resources/assets/notenoughupdates/pv_mining.png and b/src/main/resources/assets/notenoughupdates/pv_mining.png differ -- cgit