From c95fa483cbe759238d70dc51c29eb397d24d2191 Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Sun, 21 Jul 2024 12:25:55 +0200 Subject: code cleanup --- .../features/inventory/ItemDisplayOverlayFeatures.kt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/main/java/at/hannibal2') 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(?\\d*) Pests?" + "§7Vacuum Bag: §6(?\\d*) Pests?", ) private val harvestPattern by patternGroup.pattern( "harvest", - "§7§7You may harvest §6(?.).*" + "§7§7You may harvest §6(?.).*", ) private val dungeonPotionPattern by patternGroup.pattern( "dungeonpotion", - "Dungeon (?.*) Potion" + "Dungeon (?.*) Potion", ) private val bingoGoalRankPattern by patternGroup.pattern( "bingogoalrank", - "(§.)*You were the (§.)*(?[\\w]+)(?(st|nd|rd|th)) (§.)*to" + "(§.)*You were the (§.)*(?[\\w]+)(?(st|nd|rd|th)) (§.)*to", ) /** @@ -91,7 +91,7 @@ object ItemDisplayOverlayFeatures { */ private val skyblockLevelPattern by patternGroup.pattern( "skyblocklevel", - "§7Your SkyBlock Level: §8\\[(?§.\\d+)§8]" + "§7Your SkyBlock Level: §8\\[(?§.\\d+)§8]", ) @SubscribeEvent -- cgit