aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/main/java/io/github/moulberry/notenoughupdates/overlays/CrystalHollowOverlay.java19
1 files changed, 9 insertions, 10 deletions
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/overlays/CrystalHollowOverlay.java b/src/main/java/io/github/moulberry/notenoughupdates/overlays/CrystalHollowOverlay.java
index 3dadca29..87d0d8fe 100644
--- a/src/main/java/io/github/moulberry/notenoughupdates/overlays/CrystalHollowOverlay.java
+++ b/src/main/java/io/github/moulberry/notenoughupdates/overlays/CrystalHollowOverlay.java
@@ -251,8 +251,8 @@ public class CrystalHollowOverlay extends TextOverlay {
Matcher crystalPlacedMatcher = crystalPlacedPattern.matcher(message);
Matcher crystalPlaceMatcher = crystalPlacePattern.matcher(message);
Matcher crystalReclaimMatcher = crystalReclaimPattern.matcher(message);
- if(message.equals(" You've earned a Crystal Loot Bundle!"))
- hidden.crystals.replaceAll((k,v) -> 0);
+ if (message.equals(" You've earned a Crystal Loot Bundle!"))
+ hidden.crystals.replaceAll((k, v) -> 0);
if (crystalNotPlacedMatcher.matches() && hidden.crystals.containsKey(crystalNotPlacedMatcher.group("crystal"))) {
hidden.crystals.put(crystalNotPlacedMatcher.group("crystal"), 1);
resetCrystal(hidden, crystalNotPlacedMatcher.group("crystal"));
@@ -278,14 +278,13 @@ public class CrystalHollowOverlay extends TextOverlay {
hidden.divanMinesParts.put(alreadyFoundMatcher.group("item"), true);
} else if (message.startsWith(" ")) {
Matcher crystalMatcher = obtainCrystalPattern.matcher(message);
- if (crystalMatcher.matches())
- if (hidden.crystals.containsKey(crystalMatcher.group("crystal")))
- hidden.crystals.put(crystalMatcher.group("crystal"), 1);
- else {
- String item = message.replace(" ", "");
- if (hidden.divanMinesParts.containsKey(item))
- hidden.divanMinesParts.put(item, false);
- }
+ if (crystalMatcher.matches() && hidden.crystals.containsKey(crystalMatcher.group("crystal")))
+ hidden.crystals.put(crystalMatcher.group("crystal"), 1);
+ else {
+ String item = message.replace(" ", "");
+ if (hidden.divanMinesParts.containsKey(item))
+ hidden.divanMinesParts.put(item, false);
+ }
} else if (message.startsWith("[NPC] Professor Robot: ")) {
switch (message) {
case "[NPC] Professor Robot: That's not one of the components I need! Bring me one of the missing components:":