aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/io/github/moulberry/notenoughupdates/infopanes/DevInfoPane.java
diff options
context:
space:
mode:
authorBuildTools <james.jenour@protonmail.com>2020-07-08 16:28:49 +1000
committerBuildTools <james.jenour@protonmail.com>2020-07-08 16:28:49 +1000
commit7bdf7f256fe3968fe7129928c0a7100c30628bf9 (patch)
tree222deed2be57223e3b1703a638843fbf21a254e7 /src/main/java/io/github/moulberry/notenoughupdates/infopanes/DevInfoPane.java
parentf39c28236bc47a9e5395b041b494fdd7f332734e (diff)
downloadNotEnoughUpdates-7bdf7f256fe3968fe7129928c0a7100c30628bf9.tar.gz
NotEnoughUpdates-7bdf7f256fe3968fe7129928c0a7100c30628bf9.tar.bz2
NotEnoughUpdates-7bdf7f256fe3968fe7129928c0a7100c30628bf9.zip
1.9.7
Diffstat (limited to 'src/main/java/io/github/moulberry/notenoughupdates/infopanes/DevInfoPane.java')
-rw-r--r--src/main/java/io/github/moulberry/notenoughupdates/infopanes/DevInfoPane.java14
1 files changed, 10 insertions, 4 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 f28dae0b..ec5f8209 100644
--- a/src/main/java/io/github/moulberry/notenoughupdates/infopanes/DevInfoPane.java
+++ b/src/main/java/io/github/moulberry/notenoughupdates/infopanes/DevInfoPane.java
@@ -32,11 +32,11 @@ public class DevInfoPane extends TextInfoPane {
text += item.getKey() + "\n";
}
}*/
- for(String s : manager.neuio.getRemovedItems(manager.getItemInformation().keySet())) {
+ /*for(String s : manager.neuio.getRemovedItems(manager.getItemInformation().keySet())) {
text += s + "\n";
}
- if(true) return text;
+ if(true) return text;*/
/*for(Map.Entry<String, JsonObject> item : manager.getItemInformation().entrySet()) {
if(!item.getValue().has("infoType") || item.getValue().get("infoType").getAsString().isEmpty()) {
@@ -45,7 +45,13 @@ public class DevInfoPane extends TextInfoPane {
}*/
//if(true) return text;
- for(Map.Entry<String, JsonElement> entry : manager.getAuctionPricesJson().get("prices").getAsJsonObject().entrySet()) {
+ for(String internalname : manager.auctionManager.internalnameToAucIdMap.keySet()) {
+ if(!manager.getItemInformation().containsKey(internalname)) {
+ text += internalname + "\n";
+ }
+ }
+
+ /*for(Map.Entry<String, JsonElement> entry : manager.getAuctionPricesJson().get("prices").getAsJsonObject().entrySet()) {
if(!manager.getItemInformation().keySet().contains(entry.getKey())) {
if(entry.getKey().contains("-")) {
continue;
@@ -56,7 +62,7 @@ public class DevInfoPane extends TextInfoPane {
}
text += entry.getKey() + "\n";
}
- }
+ }*/
return text;
}