Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improvement: More powder mining filters #2143

Closed
wants to merge 4 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion src/main/java/at/hannibal2/skyhanni/features/chat/ChatFilter.kt
Original file line number Diff line number Diff line change
Expand Up @@ -332,6 +332,11 @@ object ChatFilter {
// Jungle
"§aYou received §r§f\\d* §r§aSludge Juice§r§a\\.".toPattern(),

// Not THAT important items
"§aYou received §r§f\\d* §r§aOil Barrel§r§a\\.".toPattern(),
"§aYou received §r§f\\d* §r§9Goblin Egg§r§a\\.".toPattern(),
"§aYou received §r§f1\\d* §r§aGreen Goblin Egg§r§a\\.".toPattern(),

// Useful, maybe in another chat
"§aYou received §r§b\\+\\d{1,3} §r§a(Mithril|Gemstone) Powder.".toPattern(),
"§aYou received §r(§6|§b)\\+[1-2] (Diamond|Gold) Essence§r§a.".toPattern(),
Expand Down Expand Up @@ -370,8 +375,11 @@ object ChatFilter {
)
private val powderMiningMessages = listOf(
"§aYou uncovered a treasure chest!",
"§aYou received §r§f1 §r§aWishing Compass§r§a.",
// Not that important items
"§aYou received §r§f3 §r§aWishing Compass§r§a.",
"§aYou received §r§f1 §r§9Ascension Rope§r§a.",
"§aYou received §r§f1 §r§5Treasurite§r§a.",
"§aYou received §r§f1 §r§aYoggie§r§a.",
// Jungle
"§aYou received §r§f1 §r§aOil Barrel§r§a.",
// Useful, maybe in another chat
Expand Down
Loading