diff options
author | jani270 <69345714+jani270@users.noreply.github.com> | 2024-09-20 11:46:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-20 19:46:35 +1000 |
commit | a900bd4a3df60664c5de758a76644871cba8abbd (patch) | |
tree | 25e0898da97ab3c9828a3c10651813aebec8524f | |
parent | ae23866e8cd6264f6c55e6891fcfb9e748f91152 (diff) | |
download | skyhanni-a900bd4a3df60664c5de758a76644871cba8abbd.tar.gz skyhanni-a900bd4a3df60664c5de758a76644871cba8abbd.tar.bz2 skyhanni-a900bd4a3df60664c5de758a76644871cba8abbd.zip |
Fix: Corpse Tracker not being modifed by /shdefaultoptions (#2549)
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/mining/CorpseTrackerConfig.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/mining/CorpseTrackerConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/mining/CorpseTrackerConfig.java index 61d3b1959..229883c83 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/mining/CorpseTrackerConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/mining/CorpseTrackerConfig.java @@ -1,5 +1,6 @@ package at.hannibal2.skyhanni.config.features.mining; +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; @@ -11,6 +12,7 @@ public class CorpseTrackerConfig { @Expose @ConfigOption(name = "Enabled", desc = "Enable the Corpse Tracker overlay for Glacite Mineshafts.") @ConfigEditorBoolean + @FeatureToggle public boolean enabled = false; @Expose |