diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-06-19 10:42:39 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-06-19 10:42:39 +0200 |
commit | b8e2d8cfc6ed0c5a3dfa0f36f1eb9c8b6ed028f8 (patch) | |
tree | e2d6ee60c940f97af9d5aa656ac0aaab4b5e38d5 /src/main/java/at/hannibal2/skyhanni/config/features | |
parent | 81e6801b2507cbb10ede6fba4f1d9ee6ef92f219 (diff) | |
download | skyhanni-b8e2d8cfc6ed0c5a3dfa0f36f1eb9c8b6ed028f8.tar.gz skyhanni-b8e2d8cfc6ed0c5a3dfa0f36f1eb9c8b6ed028f8.tar.bz2 skyhanni-b8e2d8cfc6ed0c5a3dfa0f36f1eb9c8b6ed028f8.zip |
Show Ghost counter per default only in The Mist
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/GhostCounter.java | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/GhostCounter.java b/src/main/java/at/hannibal2/skyhanni/config/features/GhostCounter.java index e0dd11e62..955253f96 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/GhostCounter.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/GhostCounter.java @@ -1,6 +1,5 @@ package at.hannibal2.skyhanni.config.features; -import akka.actor.Kill; import at.hannibal2.skyhanni.config.core.config.Position; import com.google.gson.annotations.Expose; import io.github.moulberry.moulconfig.annotations.*; @@ -82,7 +81,7 @@ public class GhostCounter { "Ghost Killed.\n" + "§e%session% §7is replaced with Ghost killed") @ConfigEditorText - public String ghostKiledFormat = " &6Ghost Killed: &b%value% &7(%session%)"; + public String ghostKilledFormat = " &6Ghost Killed: &b%value% &7(%session%)"; @Expose @ConfigOption(name = "Sorrows", desc = "Sorrows drop line.\n" + @@ -308,7 +307,7 @@ public class GhostCounter { @Expose @ConfigOption(name = "Show only in The Mist", desc = "Show the overlay only when you are in The Mist.") @ConfigEditorBoolean - public boolean onlyOnMist = false; + public boolean onlyOnMist = true; @Expose @ConfigOption(name = "Maxed Bestiary", desc = "Show progress to max bestiary instead of next level.") |