aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorjani270 <69345714+jani270@users.noreply.github.com>2022-11-09 21:02:26 +0100
committerGitHub <noreply@github.com>2022-11-09 21:02:26 +0100
commit8f8ced3155c2c694dd7d5326e635b51c112cb79f (patch)
tree31043dd024f378c5a82f2da47fad3524ddbf1413 /src
parentf997510fd8d522756aa6fff2f905bfe4f5c3c8e3 (diff)
downloadNotEnoughUpdates-8f8ced3155c2c694dd7d5326e635b51c112cb79f.tar.gz
NotEnoughUpdates-8f8ced3155c2c694dd7d5326e635b51c112cb79f.tar.bz2
NotEnoughUpdates-8f8ced3155c2c694dd7d5326e635b51c112cb79f.zip
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
Diffstat (limited to 'src')
-rw-r--r--src/main/java/io/github/moulberry/notenoughupdates/infopanes/DevInfoPane.java2
1 files changed, 1 insertions, 1 deletions
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";
}
}