aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2022-09-16 00:05:11 +0200
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2022-09-16 00:05:11 +0200
commitd32e0c37b6b514b31cd2e21294c81b3e56e3050f (patch)
tree90ed949e4a353afc660f5cfd05aea8d66b5270b7 /src/main/java/at/hannibal2/skyhanni/config
parent9b08ac8a353963e802ff964170420a867960f5b5 (diff)
downloadskyhanni-d32e0c37b6b514b31cd2e21294c81b3e56e3050f.tar.gz
skyhanni-d32e0c37b6b514b31cd2e21294c81b3e56e3050f.tar.bz2
skyhanni-d32e0c37b6b514b31cd2e21294c81b3e56e3050f.zip
added support for links in player chat
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/Features.java6
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/Chat.java4
2 files changed, 5 insertions, 5 deletions
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;
}
}
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Chat.java b/src/main/java/at/hannibal2/skyhanni/config/features/Chat.java
index 0d34e2744..26e409c00 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/Chat.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/Chat.java
@@ -85,8 +85,8 @@ public class Chat {
desc = "Change the design of the Elite position in the chat."
)
@ConfigEditorDropdown(
- values = {"§6[⌬55]",
- "§6§l⌬55",
+ values = {"§6[⌬499]",
+ "§6§l⌬499",
"§cHide Elite Position"}
)
@ConfigAccordionId(id = 1)