summaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/features/misc
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-10-16 11:13:44 +0200
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-10-16 11:13:44 +0200
commit0b6d2a73b81c1f43ca03f6527d8ccc95fff50599 (patch)
tree0416f176c9135e56891454797ec281914700c146 /src/main/java/at/hannibal2/skyhanni/features/misc
parentf36ef92c5df4a8257b17758a6170bfd6b2b6ffab (diff)
downloadskyhanni-0b6d2a73b81c1f43ca03f6527d8ccc95fff50599.tar.gz
skyhanni-0b6d2a73b81c1f43ca03f6527d8ccc95fff50599.tar.bz2
skyhanni-0b6d2a73b81c1f43ca03f6527d8ccc95fff50599.zip
moved chat config into chat category and changed to red color for incompatibility message in config description.
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/features/misc')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/misc/PlayerChatSymbols.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/misc/PlayerChatSymbols.kt b/src/main/java/at/hannibal2/skyhanni/features/misc/PlayerChatSymbols.kt
index 80ec276db..c3d45ccee 100644
--- a/src/main/java/at/hannibal2/skyhanni/features/misc/PlayerChatSymbols.kt
+++ b/src/main/java/at/hannibal2/skyhanni/features/misc/PlayerChatSymbols.kt
@@ -16,7 +16,7 @@ import net.minecraftforge.fml.common.eventhandler.SubscribeEvent
// code inspired by SBA but heavily modified to be more functional and actually work
class PlayerChatSymbols {
- private val config get() = SkyHanniMod.feature.misc.chatSymbols
+ private val config get() = SkyHanniMod.feature.chat.chatSymbols
private val nameSymbols = mutableMapOf<String, String>()
private val symbolsPattern = "^(?<symbols>(?:(?:§\\w)+\\S)+) ".toPattern()
private val symbolPattern = "((?:§\\w)+\\S)".toPattern()