diff options
| author | Lorenz <lo.scherf@gmail.com> | 2022-09-10 13:56:00 +0200 |
|---|---|---|
| committer | Lorenz <lo.scherf@gmail.com> | 2022-09-10 13:56:00 +0200 |
| commit | e483073b42080042b2da2f093151dc1371087589 (patch) | |
| tree | 01019d15edda991a830fd858c2986483905c7077 /src/main/java/at/hannibal2/skyhanni/config/Features.java | |
| parent | bcf50955857125e1469b4778d40bb7b4e07c5a78 (diff) | |
| download | SkyHanni-e483073b42080042b2da2f093151dc1371087589.tar.gz SkyHanni-e483073b42080042b2da2f093151dc1371087589.tar.bz2 SkyHanni-e483073b42080042b2da2f093151dc1371087589.zip | |
Added more player chat format options (show all channel prefix, hide player rank, hide colon after player name, hide/change elite position format, channel prefix design)
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/Features.java')
| -rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/Features.java | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/Features.java b/src/main/java/at/hannibal2/skyhanni/config/Features.java index d4803d679..8688ab603 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/Features.java +++ b/src/main/java/at/hannibal2/skyhanni/config/Features.java @@ -8,6 +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 com.google.gson.annotations.Expose; import net.minecraft.client.Minecraft; @@ -84,6 +85,16 @@ public class Features extends Config { editOverlay(activeConfigCategory, 200, 16, dungeon.copilotPos); return; } + + if (runnableId.equals("testAllChat")) { + PlayerChatFilter.Companion.testAllChat(); + return; + } + + if (runnableId.equals("testGuildChat")) { + PlayerChatFilter.Companion.testGuildChat(); + return; + } } @Expose |
