From dc24b2e65decbd2cecf8f4c02ceec7e11d62ddaa Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Fri, 16 Sep 2022 00:05:11 +0200 Subject: added support for links in player chat --- src/main/java/at/hannibal2/skyhanni/config/Features.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/main/java/at/hannibal2/skyhanni/config/Features.java') diff --git a/src/main/java/at/hannibal2/skyhanni/config/Features.java b/src/main/java/at/hannibal2/skyhanni/config/Features.java index 76f6a754d..70307c9f4 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/Features.java +++ b/src/main/java/at/hannibal2/skyhanni/config/Features.java @@ -8,7 +8,7 @@ import at.hannibal2.skyhanni.config.core.config.Position; import at.hannibal2.skyhanni.config.core.config.annotations.Category; import at.hannibal2.skyhanni.config.core.config.gui.GuiPositionEditor; import at.hannibal2.skyhanni.config.features.*; -import at.hannibal2.skyhanni.features.chat.PlayerChatFilter; +import at.hannibal2.skyhanni.features.chat.PlayerChatFormatter; import com.google.gson.annotations.Expose; import net.minecraft.client.Minecraft; @@ -87,12 +87,12 @@ public class Features extends Config { } if (runnableId.equals("testAllChat")) { - PlayerChatFilter.Companion.testAllChat(); + PlayerChatFormatter.Companion.testAllChat(); return; } if (runnableId.equals("testGuildChat")) { - PlayerChatFilter.Companion.testGuildChat(); + PlayerChatFormatter.Companion.testGuildChat(); return; } } -- cgit