From 0ebd502ad6531d4f2d74ba0212c4e606776f41a7 Mon Sep 17 00:00:00 2001 From: Zywl <86253343+opZywl@users.noreply.github.com> Date: Mon, 15 Jan 2024 20:43:30 -0300 Subject: [PATCH] Update ClickGUIModule.kt --- .../net/ccbluex/liquidbounce/ui/clickgui/ClickGUIModule.kt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/net/ccbluex/liquidbounce/ui/clickgui/ClickGUIModule.kt b/src/main/java/net/ccbluex/liquidbounce/ui/clickgui/ClickGUIModule.kt index df59710905..f282e9e8f3 100644 --- a/src/main/java/net/ccbluex/liquidbounce/ui/clickgui/ClickGUIModule.kt +++ b/src/main/java/net/ccbluex/liquidbounce/ui/clickgui/ClickGUIModule.kt @@ -42,14 +42,14 @@ object ClickGUIModule : Module() { "Black", "White" ), - "Astolfo" + "Black" ) { override fun onChanged(oldValue: String, newValue: String) { updateStyle() } } - val scaleValue = FloatValue("Scale", 0.70f, 0.7f, 2f) + val scaleValue = FloatValue("Scale", 1f, 0.7f, 2f) val maxElementsValue = IntegerValue("MaxElements", 20, 1, 35) var colorRainbow = BoolValue("Rainbow", true) val colorRedValue = IntegerValue("R", 0, 0, 255).displayable { !colorRainbow.get() } as IntegerValue @@ -100,4 +100,4 @@ object ClickGUIModule : Module() { event.cancelEvent() } } -} \ No newline at end of file +}