Skip to content

Commit 059daf6

Browse files
committed
fixed stuff
1 parent da7be25 commit 059daf6

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

src/main/kotlin/com/lambda/module/modules/client/Capes.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,5 @@ object Capes : Module(
2424
name = "Capes",
2525
description = "Display custom capes",
2626
tag = ModuleTag.CLIENT,
27+
enabledByDefault = true,
2728
)

src/main/kotlin/com/lambda/module/modules/client/Discord.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ object Discord : Module(
4545
name = "Discord",
4646
description = "Discord Rich Presence configuration",
4747
tag = ModuleTag.CLIENT,
48-
//enabledByDefault = true, // ToDo: Bring this back on beta release
48+
enabledByDefault = true,
4949
) {
5050
private val delay by setting("Update Delay", 5000L, 5000L..30000L, 100L, unit = "ms")
5151
private val showTime by setting("Show Time", true, description = "Show how long you have been playing for.")

src/main/kotlin/com/lambda/module/modules/client/LambdaMoji.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ object LambdaMoji : Module(
3232
name = "LambdaMoji",
3333
description = "",
3434
tag = ModuleTag.CLIENT,
35-
enabledByDefault = true,
35+
enabledByDefault = false,
3636
) {
3737
val suggestions by setting("Chat Suggestions", true)
3838

src/main/kotlin/com/lambda/module/modules/player/ClickFriend.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,15 @@ import com.lambda.util.Communication.info
3030
import com.lambda.util.world.raycast.RayCastUtils.entityResult
3131
import net.minecraft.client.network.OtherClientPlayerEntity
3232
import org.lwjgl.glfw.GLFW
33+
import org.lwjgl.glfw.GLFW.GLFW_MOD_SHIFT
3334

3435
object ClickFriend : Module(
3536
name = "ClickFriend",
3637
description = "Add or remove friends with a single click",
3738
tag = ModuleTag.PLAYER,
3839
) {
3940
private val friendBind by setting("Friend Bind", Bind(0, 0, GLFW.GLFW_MOUSE_BUTTON_MIDDLE), "Bind to press to befriend a player")
40-
private val unfriendBind by setting("Unfriend Bind", friendBind, "Bind to press to unfriend a player")
41+
private val unfriendBind by setting("Unfriend Bind", Bind(0, GLFW_MOD_SHIFT, GLFW.GLFW_MOUSE_BUTTON_MIDDLE), "Bind to press to unfriend a player")
4142

4243
init {
4344
listen<MouseEvent.Click> {

0 commit comments

Comments
 (0)