diff options
| author | Thunderblade73 <85900443+Thunderblade73@users.noreply.github.com> | 2024-01-20 10:06:38 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-01-20 10:06:38 +0100 |
| commit | 2d11b0cfe4adf7b6535d91cbdf339e47898d925e (patch) | |
| tree | b52e4912cdd42fef593ddd040edd49fcd187b965 /src/main/java/at/hannibal2/skyhanni/config | |
| parent | 1f950c47b505a47ca49be67b7f0d85c2c65ae1da (diff) | |
| download | skyhanni-2d11b0cfe4adf7b6535d91cbdf339e47898d925e.tar.gz skyhanni-2d11b0cfe4adf7b6535d91cbdf339e47898d925e.tar.bz2 skyhanni-2d11b0cfe4adf7b6535d91cbdf339e47898d925e.zip | |
Feature: SkyblockXPInChat (#919)
Added Skyblock XP Chat. #919
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
| -rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/chat/ChatConfig.java | 9 |
1 files changed, 7 insertions, 2 deletions
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; } |
