Skip to content

Commit c92ac09

Browse files
committed
consistent camel case module names [:(]
1 parent 688931c commit c92ac09

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/main/kotlin/com/lambda/module/hud/Fps.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,6 @@ object Fps : HudModule(
5151
}
5252

5353
override fun ImGuiBuilder.buildLayout() {
54-
text("Fps: $fps")
54+
text("FPS: $fps")
5555
}
5656
}

src/main/kotlin/com/lambda/module/hud/TPS.kt renamed to src/main/kotlin/com/lambda/module/hud/Tps.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ import com.lambda.util.ServerTPS
2525
import com.lambda.util.ServerTPS.recentData
2626
import imgui.ImVec2
2727

28-
object TPS : HudModule(
29-
name = "TPS",
28+
object Tps : HudModule(
29+
name = "Tps",
3030
description = "Display the server's tick rate",
3131
tag = ModuleTag.HUD,
3232
) {

src/main/kotlin/com/lambda/module/modules/render/ViewModel.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ import org.joml.Vector3i
3737
import kotlin.math.tan
3838

3939
object ViewModel : Module(
40-
name = "View Model",
40+
name = "ViewModel",
4141
description = "Adjusts hand and held item rendering",
4242
tag = ModuleTag.RENDER,
4343
) {

0 commit comments

Comments
 (0)