From 66721b00b96019d147ce846673ff4c61dc9f359c Mon Sep 17 00:00:00 2001 From: LambdAurora Date: Wed, 15 Jan 2020 18:20:10 +0100 Subject: [PATCH] :speech_balloon: Increase max speed ranges. --- .../client/gui/LambdaControlsSettingsScreen.java | 4 ++-- gradle.properties | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/fabric/src/main/java/me/lambdaurora/lambdacontrols/client/gui/LambdaControlsSettingsScreen.java b/fabric/src/main/java/me/lambdaurora/lambdacontrols/client/gui/LambdaControlsSettingsScreen.java index c3fee76..9eb19b3 100644 --- a/fabric/src/main/java/me/lambdaurora/lambdacontrols/client/gui/LambdaControlsSettingsScreen.java +++ b/fabric/src/main/java/me/lambdaurora/lambdacontrols/client/gui/LambdaControlsSettingsScreen.java @@ -71,14 +71,14 @@ public class LambdaControlsSettingsScreen extends Screen // General options this.auto_switch_mode_option = new SpruceBooleanOption("lambdacontrols.menu.auto_switch_mode", game_options -> this.mod.config.has_auto_switch_mode(), (game_options, new_value) -> this.mod.config.set_auto_switch_mode(new_value), new TranslatableText("lambdacontrols.tooltip.auto_switch_mode")); - this.rotation_speed_option = new SpruceDoubleOption("lambdacontrols.menu.rotation_speed", 0.0, 50.0, 0.5F, game_options -> this.mod.config.get_rotation_speed(), + this.rotation_speed_option = new SpruceDoubleOption("lambdacontrols.menu.rotation_speed", 0.0, 150.0, 0.5F, game_options -> this.mod.config.get_rotation_speed(), (game_options, new_value) -> { synchronized (this.mod.config) { this.mod.config.set_rotation_speed(new_value); } }, (game_options, option) -> option.getDisplayPrefix() + option.get(options), new TranslatableText("lambdacontrols.tooltip.rotation_speed")); - this.mouse_speed_option = new SpruceDoubleOption("lambdacontrols.menu.mouse_speed", 0.0, 50.0, 0.5F, game_options -> this.mod.config.get_mouse_speed(), + this.mouse_speed_option = new SpruceDoubleOption("lambdacontrols.menu.mouse_speed", 0.0, 150.0, 0.5F, game_options -> this.mod.config.get_mouse_speed(), (game_options, new_value) -> { synchronized (this.mod.config) { this.mod.config.set_mouse_speed(new_value); diff --git a/gradle.properties b/gradle.properties index 37aa3bd..eca8b9b 100644 --- a/gradle.properties +++ b/gradle.properties @@ -8,7 +8,7 @@ org.gradle.jvmargs=-Xmx1G loader_version=0.7.3+build.176 # Mod Properties - mod_version = 1.1.0-test8 + mod_version = 1.1.0-test9 maven_group = me.lambdaurora archives_base_name = lambdacontrols