aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config/features
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/stranded/StrandedConfig.java12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/stranded/StrandedConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/stranded/StrandedConfig.java
index 595a0f173..f5e37c0c6 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/stranded/StrandedConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/stranded/StrandedConfig.java
@@ -1,8 +1,10 @@
package at.hannibal2.skyhanni.config.features.stranded;
import at.hannibal2.skyhanni.config.FeatureToggle;
+import at.hannibal2.skyhanni.config.core.config.Position;
import com.google.gson.annotations.Expose;
import io.github.notenoughupdates.moulconfig.annotations.ConfigEditorBoolean;
+import io.github.notenoughupdates.moulconfig.annotations.ConfigLink;
import io.github.notenoughupdates.moulconfig.annotations.ConfigOption;
public class StrandedConfig {
@@ -11,4 +13,14 @@ public class StrandedConfig {
@ConfigEditorBoolean
@FeatureToggle
public boolean highlightPlaceableNpcs = false;
+
+ @Expose
+ @ConfigOption(name = "In Water Display", desc = "Displays if the Player is in water.")
+ @ConfigEditorBoolean
+ @FeatureToggle
+ public boolean inWaterDisplay = false;
+
+ @Expose
+ @ConfigLink(owner = StrandedConfig.class, field = "inWaterDisplay")
+ public Position inWaterPosition = new Position(20, 20);
}