aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-03-31 16:39:29 +0200
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-03-31 16:39:29 +0200
commit004a75c74d5f26443d08986f862353ce59335a4d (patch)
treeaaa2c70250371bb3e856e5c23d3a82db29baa995
parentc64f9f81d4908605341cc519743d5c4540d7925d (diff)
downloadSkyHanni-004a75c74d5f26443d08986f862353ce59335a4d.tar.gz
SkyHanni-004a75c74d5f26443d08986f862353ce59335a4d.tar.bz2
SkyHanni-004a75c74d5f26443d08986f862353ce59335a4d.zip
Fixed 'Mark Own Name' setting not saving when restarting
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/MarkedPlayers.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/MarkedPlayers.java b/src/main/java/at/hannibal2/skyhanni/config/features/MarkedPlayers.java
index 89d5a624c..6cdb94590 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/MarkedPlayers.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/MarkedPlayers.java
@@ -1,6 +1,5 @@
package at.hannibal2.skyhanni.config.features;
-import at.hannibal2.skyhanni.features.misc.MarkedPlayerManager;
import com.google.gson.annotations.Expose;
import io.github.moulberry.moulconfig.annotations.ConfigEditorBoolean;
import io.github.moulberry.moulconfig.annotations.ConfigOption;
@@ -18,6 +17,7 @@ public class MarkedPlayers {
@ConfigEditorBoolean
public boolean highlightInChat = true;
+ @Expose
@ConfigOption(name = "Mark Own Name", desc = "Mark own player name.")
@ConfigEditorBoolean()
public Property<Boolean> markOwnName = Property.of(false);