From c2148dc9c57f4be833dfd8071290471a69da205f Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Wed, 5 Jul 2023 13:24:32 +0200 Subject: Added ParkourHelper --- src/main/java/at/hannibal2/skyhanni/config/features/RiftConfig.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/main/java/at/hannibal2/skyhanni/config') diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/RiftConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/RiftConfig.java index cbedf3dca..a728bbb2f 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/RiftConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/RiftConfig.java @@ -216,17 +216,17 @@ public class RiftConfig { @Expose @ConfigOption(name = "Look Ahead", desc = "Change how many platforms should be shown in front of you.") @ConfigEditorSlider(minStep = 1, maxValue = 9, minValue = 1) - public int lookAhead = 2; + public Property lookAhead = Property.of(2); @Expose @ConfigOption(name = "Rainbow Color", desc = "Show the rainbow color effect instead of a boring monochrome.") @ConfigEditorBoolean - public boolean rainbowColor = true; + public Property rainbowColor = Property.of(true); @Expose @ConfigOption(name = "Monochrome Color", desc = "Set a boring monochrome color for the parkour platforms.") @ConfigEditorColour - public String monochromeColor = "0:60:0:0:255"; + public Property monochromeColor = Property.of("0:60:0:0:255"); @Expose @ConfigOption(name = "Hide others players", desc = "Hide other players while doing the upside down parkour.") -- cgit