From 2d11b0cfe4adf7b6535d91cbdf339e47898d925e Mon Sep 17 00:00:00 2001 From: Thunderblade73 <85900443+Thunderblade73@users.noreply.github.com> Date: Sat, 20 Jan 2024 10:06:38 +0100 Subject: Feature: SkyblockXPInChat (#919) Added Skyblock XP Chat. #919 --- .../at/hannibal2/skyhanni/config/features/chat/ChatConfig.java | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'src/main/java/at/hannibal2/skyhanni/config/features') diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/chat/ChatConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/chat/ChatConfig.java index 1784d916d..4e9a351a7 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/chat/ChatConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/chat/ChatConfig.java @@ -7,10 +7,9 @@ import io.github.moulberry.moulconfig.annotations.ConfigEditorBoolean; import io.github.moulberry.moulconfig.annotations.ConfigEditorDraggableList; import io.github.moulberry.moulconfig.annotations.ConfigEditorKeybind; import io.github.moulberry.moulconfig.annotations.ConfigOption; -import org.lwjgl.input.Keyboard; - import java.util.ArrayList; import java.util.List; +import org.lwjgl.input.Keyboard; public class ChatConfig { @@ -118,4 +117,10 @@ public class ChatConfig { @ConfigEditorBoolean @FeatureToggle public boolean translator = false; + + @Expose + @ConfigOption(name = "Skyblock XP Chat", desc = "Sends the Skyblock XP message into the chat.") + @ConfigEditorBoolean + @FeatureToggle + public boolean skyBlockXPInChat = true; } -- cgit