aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config/features
diff options
context:
space:
mode:
authorThunderblade73 <85900443+Thunderblade73@users.noreply.github.com>2024-03-10 19:29:33 +0100
committerGitHub <noreply@github.com>2024-03-10 19:29:33 +0100
commit6b19f73c526fc4bbb196b7b547750ebe60feb76d (patch)
treef9a875b184c78916a6c7064edcb35cc3a862749c /src/main/java/at/hannibal2/skyhanni/config/features
parent498afd58e3405d473107e08a3b1891f93f76a96a (diff)
downloadskyhanni-6b19f73c526fc4bbb196b7b547750ebe60feb76d.tar.gz
skyhanni-6b19f73c526fc4bbb196b7b547750ebe60feb76d.tar.bz2
skyhanni-6b19f73c526fc4bbb196b7b547750ebe60feb76d.zip
Debug Feature: Added TrackSoundsCommand (#855)
Co-authored-by: Linnea Gräf <nea@nea.moe> Co-authored-by: hannibal2 <24389977+hannibal002@users.noreply.github.com> Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com>
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/dev/DebugConfig.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/dev/DebugConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/dev/DebugConfig.java
index 927ef8676..480d2955e 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/dev/DebugConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/dev/DebugConfig.java
@@ -1,5 +1,6 @@
package at.hannibal2.skyhanni.config.features.dev;
+import at.hannibal2.skyhanni.config.core.config.Position;
import com.google.gson.annotations.Expose;
import io.github.moulberry.moulconfig.annotations.ConfigEditorBoolean;
import io.github.moulberry.moulconfig.annotations.ConfigEditorKeybind;
@@ -111,4 +112,7 @@ public class DebugConfig {
@ConfigOption(name = "SkyBlock Area", desc = "Show your current area in SkyBlock while f3 is open.")
@ConfigEditorBoolean
public boolean currentAreaDebug = true;
+
+ @Expose
+ public Position trackSoundPosition = new Position(0, 0);
}