aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/inventory/ItemDisplayOverlayFeatures.kt12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/inventory/ItemDisplayOverlayFeatures.kt b/src/main/java/at/hannibal2/skyhanni/features/inventory/ItemDisplayOverlayFeatures.kt
index ebd793cab..204cf0b6d 100644
--- a/src/main/java/at/hannibal2/skyhanni/features/inventory/ItemDisplayOverlayFeatures.kt
+++ b/src/main/java/at/hannibal2/skyhanni/features/inventory/ItemDisplayOverlayFeatures.kt
@@ -66,23 +66,23 @@ object ItemDisplayOverlayFeatures {
private val patternGroup = RepoPattern.group("inventory.item.overlay")
private val masterSkullPattern by patternGroup.pattern(
"masterskull",
- "(.*)Master Skull - Tier ."
+ "(.*)Master Skull - Tier .",
)
private val gardenVacuumPatterm by patternGroup.pattern(
"vacuum",
- "§7Vacuum Bag: §6(?<amount>\\d*) Pests?"
+ "§7Vacuum Bag: §6(?<amount>\\d*) Pests?",
)
private val harvestPattern by patternGroup.pattern(
"harvest",
- "§7§7You may harvest §6(?<amount>.).*"
+ "§7§7You may harvest §6(?<amount>.).*",
)
private val dungeonPotionPattern by patternGroup.pattern(
"dungeonpotion",
- "Dungeon (?<level>.*) Potion"
+ "Dungeon (?<level>.*) Potion",
)
private val bingoGoalRankPattern by patternGroup.pattern(
"bingogoalrank",
- "(§.)*You were the (§.)*(?<rank>[\\w]+)(?<ordinal>(st|nd|rd|th)) (§.)*to"
+ "(§.)*You were the (§.)*(?<rank>[\\w]+)(?<ordinal>(st|nd|rd|th)) (§.)*to",
)
/**
@@ -91,7 +91,7 @@ object ItemDisplayOverlayFeatures {
*/
private val skyblockLevelPattern by patternGroup.pattern(
"skyblocklevel",
- "§7Your SkyBlock Level: §8\\[(?<level>§.\\d+)§8]"
+ "§7Your SkyBlock Level: §8\\[(?<level>§.\\d+)§8]",
)
@SubscribeEvent