From 30d7e0251156b1995c96f8fbbabb477a053d5235 Mon Sep 17 00:00:00 2001 From: Harry282 Date: Mon, 15 Jan 2024 20:26:40 -0500 Subject: [PATCH] Fix automatic wither key pickup message --- src/main/kotlin/funnymap/features/dungeon/Dungeon.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/funnymap/features/dungeon/Dungeon.kt b/src/main/kotlin/funnymap/features/dungeon/Dungeon.kt index 7a96fb3..a11fc70 100755 --- a/src/main/kotlin/funnymap/features/dungeon/Dungeon.kt +++ b/src/main/kotlin/funnymap/features/dungeon/Dungeon.kt @@ -21,7 +21,7 @@ object Dungeon { private val keyGainRegex = listOf( Regex(".+ §r§ehas obtained §r§a§r§.+ Key§r§e!§r"), - Regex("§r§eA §r§a§r§\\w+ Key§r§e was picked up!§r") + Regex("§r§eA §r§a§r§.+ Key§r§e was picked up!§r") ) private val keyUseRegex = listOf( Regex("§r§cThe §r§c§lBLOOD DOOR§r§c has been opened!§r"),