aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-04-18 16:00:31 +0200
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-04-18 16:00:31 +0200
commit5ef0e2b96f14866b2810832045ab0c2f40e9e3f6 (patch)
tree26be02b102159a8222235ee04d1a6ad9032ac411
parent9a7680b385aa83ad3c6f1b3e1f9a6b14f3260956 (diff)
downloadSkyHanni-5ef0e2b96f14866b2810832045ab0c2f40e9e3f6.tar.gz
SkyHanni-5ef0e2b96f14866b2810832045ab0c2f40e9e3f6.tar.bz2
SkyHanni-5ef0e2b96f14866b2810832045ab0c2f40e9e3f6.zip
Fixed bazaar highlighting for full buy order
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/bazaar/BazaarOrderHelper.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/bazaar/BazaarOrderHelper.kt b/src/main/java/at/hannibal2/skyhanni/features/bazaar/BazaarOrderHelper.kt
index d3be8269f..1e00d8c22 100644
--- a/src/main/java/at/hannibal2/skyhanni/features/bazaar/BazaarOrderHelper.kt
+++ b/src/main/java/at/hannibal2/skyhanni/features/bazaar/BazaarOrderHelper.kt
@@ -15,7 +15,7 @@ import net.minecraftforge.fml.common.eventhandler.SubscribeEvent
class BazaarOrderHelper {
private val bazaarItemNamePattern = "§.§l(?<type>BUY|SELL) (?<name>.*)".toPattern()
- private val filledPattern = "§7Filled: §6.*§7/.* §a§l100%!".toPattern()
+ private val filledPattern = "§7Filled: §[a6].*§7/.* §a§l100%!".toPattern()
private val pricePattern = "§7Price per unit: §6(?<number>.*) coins".toPattern()
companion object {