diff options
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/event/carnival/ZombieShootoutConfig.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/event/carnival/ZombieShootoutConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/event/carnival/ZombieShootoutConfig.java index 5709e7e58..e65fc4c8a 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/event/carnival/ZombieShootoutConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/event/carnival/ZombieShootoutConfig.java @@ -21,14 +21,14 @@ public class ZombieShootoutConfig { public boolean coloredHitboxes = true; @Expose - @ConfigOption(name = "Colored Lines", desc = "Display a colored line to lamps.") + @ConfigOption(name = "Highest Only", desc = "Only draw colored hitboxes for the highest scoring zombies.") @ConfigEditorBoolean - public boolean coloredLines = true; + public boolean highestOnly = false; @Expose - @ConfigOption(name = "Highest Only", desc = "Only draw colored hitboxes/lines for the highest scoring zombies.") + @ConfigOption(name = "Colored Line", desc = "Display a colored line to lamps.") @ConfigEditorBoolean - public boolean highestOnly = false; + public boolean coloredLines = true; @Expose @ConfigOption(name = "Lamp Timer", desc = "Show time until current lamp disappears.") |