summaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config
diff options
context:
space:
mode:
authorThunderblade73 <85900443+Thunderblade73@users.noreply.github.com>2024-01-20 10:06:38 +0100
committerGitHub <noreply@github.com>2024-01-20 10:06:38 +0100
commit2d11b0cfe4adf7b6535d91cbdf339e47898d925e (patch)
treeb52e4912cdd42fef593ddd040edd49fcd187b965 /src/main/java/at/hannibal2/skyhanni/config
parent1f950c47b505a47ca49be67b7f0d85c2c65ae1da (diff)
downloadskyhanni-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.java9
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;
}