diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2024-07-21 12:25:55 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2024-07-21 12:25:55 +0200 |
commit | c95fa483cbe759238d70dc51c29eb397d24d2191 (patch) | |
tree | 1313a766f559200b681b2289aa93d9853476bba4 /src | |
parent | b43cb5ba98a4687c1dad16004946a341c56de013 (diff) | |
download | skyhanni-c95fa483cbe759238d70dc51c29eb397d24d2191.tar.gz skyhanni-c95fa483cbe759238d70dc51c29eb397d24d2191.tar.bz2 skyhanni-c95fa483cbe759238d70dc51c29eb397d24d2191.zip |
code cleanup
Diffstat (limited to 'src')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/inventory/ItemDisplayOverlayFeatures.kt | 12 |
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 |