From 8f8ced3155c2c694dd7d5326e635b51c112cb79f Mon Sep 17 00:00:00 2001 From: jani270 <69345714+jani270@users.noreply.github.com> Date: Wed, 9 Nov 2022 21:02:26 +0100 Subject: Removed Abicase from Dev Pane and added missing update note (#434) * Removed Abicase from Dev Pane and added missing update note * Changed add into added and added missing patch notes * Fixed nea thing --- .../io/github/moulberry/notenoughupdates/infopanes/DevInfoPane.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main/java') diff --git a/src/main/java/io/github/moulberry/notenoughupdates/infopanes/DevInfoPane.java b/src/main/java/io/github/moulberry/notenoughupdates/infopanes/DevInfoPane.java index 421bc798..c44a9f71 100644 --- a/src/main/java/io/github/moulberry/notenoughupdates/infopanes/DevInfoPane.java +++ b/src/main/java/io/github/moulberry/notenoughupdates/infopanes/DevInfoPane.java @@ -61,7 +61,7 @@ public class DevInfoPane extends TextInfoPane { for (String internalname : manager.auctionManager.getItemAuctionInfoKeySet()) { if (internalname.matches("^.*-[0-9]{1,3}$")) continue; if (!manager.getItemInformation().containsKey(internalname)) { - if (internalname.equals("RUNE") || internalname.contains("PARTY_HAT_CRAB")) continue; + if (internalname.equals("RUNE") || internalname.contains("PARTY_HAT_CRAB") || internalname.equals("ABICASE")) continue; text += internalname + "\n"; } } -- cgit