From c9fbe18b61bfb40e4b0b56bc9aadc56ca54c5d75 Mon Sep 17 00:00:00 2001 From: Shrey Jain <143933598+shreyjain14@users.noreply.github.com> Date: Wed, 28 Aug 2024 18:55:00 +0530 Subject: FIX optimal speed for cactus (#2424) --- .../config/features/garden/optimalspeed/CustomSpeedConfig.java | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'src/main/java/at/hannibal2') diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/garden/optimalspeed/CustomSpeedConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/garden/optimalspeed/CustomSpeedConfig.java index 16416372a..ffe493fc9 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/garden/optimalspeed/CustomSpeedConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/garden/optimalspeed/CustomSpeedConfig.java @@ -65,11 +65,9 @@ public class CustomSpeedConfig { @Expose @ConfigOption(name = "Cactus", desc = "Suggested farm speed:\n" + - "§eNormal§7: §f✦ 400 speed\n" + - "§eRacing Helmet§7: §f✦ 464 speed\n" + - "§eBlack Cat§7: §f✦ 464 speed") + "§eYaw 90§7: §f✦ 464 speed") @ConfigEditorSlider(minValue = 1, maxValue = 500, minStep = 1) - public Property cactus = Property.of(400f); + public Property cactus = Property.of(464f); // TODO does other speed settings exist? @Expose -- cgit