Skip to content

Commit

Permalink
oops
Browse files Browse the repository at this point in the history
  • Loading branch information
CalMWolfs committed Dec 9, 2024
1 parent 7e5b931 commit 1c896b3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ public static String resolveEnchantmentByName(String name) {
Matcher matcher = ENCHANTED_BOOK_NAME_PATTERN.matcher(name);
if (!matcher.matches()) return null;
String format = matcher.group(1).toLowerCase(Locale.ROOT);
String enchantmentName = NEUManager.cleanForTitleMapSearch(matcher.group(2));
String enchantmentName = matcher.group(2).trim().replace("'", "");
String romanLevel = matcher.group(3);
boolean ultimate = (format.contains("§l"));

Expand Down

0 comments on commit 1c896b3

Please sign in to comment.