diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2022-09-28 09:56:41 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2022-09-28 09:56:41 +0200 |
commit | 90946f9f42881e6c7263cfd6e03ee40ddc47bfe6 (patch) | |
tree | 9c62142a4aaaa8cde6fb679236c1160256653c86 | |
parent | 0899bc4559ecf1fc3a0475f45c59bdbe3c475fe4 (diff) | |
download | skyhanni-90946f9f42881e6c7263cfd6e03ee40ddc47bfe6.tar.gz skyhanni-90946f9f42881e6c7263cfd6e03ee40ddc47bfe6.tar.bz2 skyhanni-90946f9f42881e6c7263cfd6e03ee40ddc47bfe6.zip |
typos
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/slayer/SlayerQuestWarning.kt | 2 | ||||
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/utils/MinecraftConsoleFilter.kt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/slayer/SlayerQuestWarning.kt b/src/main/java/at/hannibal2/skyhanni/features/slayer/SlayerQuestWarning.kt index fd3cb2f84..22d9b9573 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/slayer/SlayerQuestWarning.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/slayer/SlayerQuestWarning.kt @@ -110,7 +110,7 @@ class SlayerQuestWarning { if (bossSlain) { needNewQuest("You have no Auto-Slayer active!") } else if (slayBoss) { - needNewQuest("You probably switched the server during an active boss and how hypixel doesn't know what to do.") + needNewQuest("You probably switched the server during an active boss and now hypixel doesn't know what to do.") } } } diff --git a/src/main/java/at/hannibal2/skyhanni/utils/MinecraftConsoleFilter.kt b/src/main/java/at/hannibal2/skyhanni/utils/MinecraftConsoleFilter.kt index b922e524c..e7ef6d653 100644 --- a/src/main/java/at/hannibal2/skyhanni/utils/MinecraftConsoleFilter.kt +++ b/src/main/java/at/hannibal2/skyhanni/utils/MinecraftConsoleFilter.kt @@ -53,7 +53,7 @@ class MinecraftConsoleFilter(private val loggerConfigName: String) : Filter { } } if (SkyHanniMod.feature.dev.filterUnknownSound) { - if (formattedMessage == "Unable to play unknown soundEvent: minecraft:") { + if (formattedMessage.startsWith("Unable to play unknown soundEvent: minecraft:")) { filterConsole("Unknown soundEvent (minecraft:)") return Filter.Result.DENY } |