Skip to content

Commit

Permalink
fix: particle burrows not always removed on death
Browse files Browse the repository at this point in the history
  • Loading branch information
My-Name-Is-Jeff committed Jan 21, 2024
1 parent d86709e commit fb42cce
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ object GriffinBurrows {
fun onChat(event: ClientChatReceivedEvent) {
val unformatted = event.message.unformattedText.stripControlCodes()
if (Skytils.config.showGriffinBurrows &&
(unformatted.startsWith("You died") ||
(unformatted.startsWith("You died") || unformatted.startsWith("☠ You were killed") ||
unformatted.startsWith("You dug out a Griffin Burrow! (") ||
unformatted == "You finished the Griffin burrow chain! (4/4)")
) {
Expand Down

0 comments on commit fb42cce

Please sign in to comment.