aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNopoTheGamer <40329022+NopoTheGamer@users.noreply.github.com>2022-10-05 12:51:23 +1100
committerGitHub <noreply@github.com>2022-10-04 21:51:23 -0400
commit7b647deee3d37847f2ca2a6895d837748800c6b6 (patch)
treebe68664bfb932488554de7169941119fc2fce6f0
parent34d049d2611dab85f6fee6c2f13a51e8f8e284bd (diff)
downloadNotEnoughUpdates-7b647deee3d37847f2ca2a6895d837748800c6b6.tar.gz
NotEnoughUpdates-7b647deee3d37847f2ca2a6895d837748800c6b6.tar.bz2
NotEnoughUpdates-7b647deee3d37847f2ca2a6895d837748800c6b6.zip
fix hollows solver with turkey (#340)
*maybe* fix hollows solver with turkey
-rw-r--r--src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/CrystalWishingCompassSolver.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/CrystalWishingCompassSolver.java b/src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/CrystalWishingCompassSolver.java
index 07f19a60..0ee29b4f 100644
--- a/src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/CrystalWishingCompassSolver.java
+++ b/src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/CrystalWishingCompassSolver.java
@@ -47,6 +47,7 @@ import java.util.ArrayDeque;
import java.util.ArrayList;
import java.util.EnumSet;
import java.util.HashMap;
+import java.util.Locale;
import java.util.function.BooleanSupplier;
import java.util.function.LongSupplier;
@@ -509,7 +510,7 @@ public class CrystalWishingCompassSolver {
for (String crystalName : crystals.keySet()) {
Integer crystalState = crystals.get(crystalName);
if (crystalState != null && crystalState > 0) {
- foundCrystals.add(Crystal.valueOf(crystalName.toUpperCase()));
+ foundCrystals.add(Crystal.valueOf(crystalName.toUpperCase(Locale.US).replace("İ", "I")));
}
}