Skip to content

Commit 391e9e5

Browse files
committed
1 more mistake
1 parent 6dd4889 commit 391e9e5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

common/src/main/kotlin/com/lambda/module/modules/client/GuiSettings.kt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,16 @@ import com.lambda.module.tag.ModuleTag
55
import java.awt.Color
66

77
object GuiSettings : Module(
8-
name = "HUD",
8+
name = "GuiSettings",
99
description = "Visual behaviour configuration",
1010
defaultTags = setOf(ModuleTag.CLIENT)
1111
) {
1212
private val page by setting("Page", Page.General)
1313

14+
// General
1415
private val scaleSetting by setting("Scale", 1.0, 0.5..3.0, 0.01, visibility = { page == Page.General })
1516

17+
// Colors
1618
private val primaryColor by setting("Primary Color", Color(130, 200, 255), visibility = { page == Page.Colors })
1719
private val secondaryColor by setting("Secondary Color", Color(225, 130, 225), visibility = { page == Page.Colors && shade })
1820
val backgroundColor by setting("Background Color", Color(0, 0, 0, 80), visibility = { page == Page.Colors })

0 commit comments

Comments
 (0)