diff options
author | NopoTheGamer <40329022+NopoTheGamer@users.noreply.github.com> | 2022-09-23 01:48:20 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-22 17:48:20 +0200 |
commit | b932226747a1e53d3818a54a0cff358664ea1190 (patch) | |
tree | ee9069976bb1ae1815390e42946288c0593bdd20 | |
parent | c055595e0a35accf1a8a4742286a7b267037ac45 (diff) | |
download | NotEnoughUpdates-b932226747a1e53d3818a54a0cff358664ea1190.tar.gz NotEnoughUpdates-b932226747a1e53d3818a54a0cff358664ea1190.tar.bz2 NotEnoughUpdates-b932226747a1e53d3818a54a0cff358664ea1190.zip |
make rune not show in dev pane (#297)
-rw-r--r-- | src/main/java/io/github/moulberry/notenoughupdates/infopanes/DevInfoPane.java | 1 |
1 files changed, 1 insertions, 0 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 a449919e..0b1963d6 100644 --- a/src/main/java/io/github/moulberry/notenoughupdates/infopanes/DevInfoPane.java +++ b/src/main/java/io/github/moulberry/notenoughupdates/infopanes/DevInfoPane.java @@ -81,6 +81,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; text += internalname + "\n"; } } |