diff options
| author | Moulberry <jjenour@student.unimelb.edu.au> | 2021-07-22 08:25:57 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-07-22 08:25:57 +0000 |
| commit | 47438cca0b864602b4faa3b56195aff4278b2094 (patch) | |
| tree | 48d091cdc34c31f2b3173f405a845d1b752a37fc /src/main/java/io/github/moulberry/notenoughupdates/miscgui/AccessoryBagOverlay.java | |
| parent | c1c4562b42d53ec2e8885c48f97249d7768fe1c7 (diff) | |
| parent | cb3c51f303672d350354a32cf504a4a242f9f4aa (diff) | |
| download | notenoughupdates-47438cca0b864602b4faa3b56195aff4278b2094.tar.gz notenoughupdates-47438cca0b864602b4faa3b56195aff4278b2094.tar.bz2 notenoughupdates-47438cca0b864602b4faa3b56195aff4278b2094.zip | |
Merge pull request #210 from DoKM/master
DoKM fork merge
Diffstat (limited to 'src/main/java/io/github/moulberry/notenoughupdates/miscgui/AccessoryBagOverlay.java')
| -rw-r--r-- | src/main/java/io/github/moulberry/notenoughupdates/miscgui/AccessoryBagOverlay.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/miscgui/AccessoryBagOverlay.java b/src/main/java/io/github/moulberry/notenoughupdates/miscgui/AccessoryBagOverlay.java index 6d0873ed..3ad83f1a 100644 --- a/src/main/java/io/github/moulberry/notenoughupdates/miscgui/AccessoryBagOverlay.java +++ b/src/main/java/io/github/moulberry/notenoughupdates/miscgui/AccessoryBagOverlay.java @@ -331,7 +331,7 @@ public class AccessoryBagOverlay { List<String> missingInternal = new ArrayList<>(); for(Map.Entry<String, JsonObject> entry : NotEnoughUpdates.INSTANCE.manager.getItemInformation().entrySet()) { if(entry.getValue().has("lore")) { - if(checkItemType(entry.getValue().get("lore").getAsJsonArray(), "ACCESSORY", "HATCCESSORY") >= 0) { + if(checkItemType(entry.getValue().get("lore").getAsJsonArray(), "ACCESSORY", "HATCCESSORY", "DUNGEON ACCESSORY") >= 0) { missingInternal.add(entry.getKey()); } } |
