diff --git a/src/main/kotlin/com/lambda/client/module/modules/player/NoGhostItems.kt b/src/main/kotlin/com/lambda/client/module/modules/player/NoGhostItems.kt index dbf3caf68..1fabbde5b 100644 --- a/src/main/kotlin/com/lambda/client/module/modules/player/NoGhostItems.kt +++ b/src/main/kotlin/com/lambda/client/module/modules/player/NoGhostItems.kt @@ -14,7 +14,7 @@ import com.lambda.mixin.player.MixinPlayerControllerMP */ object NoGhostItems : Module( name = "NoGhostItems", - description = "Syncs inventory transactions for strict environments", + description = "Syncs inventory interactions for strict environments", category = Category.PLAYER ) { val syncMode by setting("Scope", SyncMode.MODULES) @@ -41,4 +41,4 @@ object NoGhostItems : Module( false } } -} \ No newline at end of file +} diff --git a/src/main/kotlin/com/lambda/client/module/modules/player/PacketCancel.kt b/src/main/kotlin/com/lambda/client/module/modules/player/PacketCancel.kt index 5a5f93f7f..c6f4857d8 100644 --- a/src/main/kotlin/com/lambda/client/module/modules/player/PacketCancel.kt +++ b/src/main/kotlin/com/lambda/client/module/modules/player/PacketCancel.kt @@ -18,7 +18,7 @@ import net.minecraft.network.status.server.SPacketServerInfo object PacketCancel : Module( name = "PacketCancel", - description = "Cancels specific packets used for various actions", + description = "Cancels specific packets for various interactions", category = Category.PLAYER ) { enum class Side { @@ -285,4 +285,4 @@ object PacketCancel : Module( } } } -} \ No newline at end of file +} diff --git a/src/main/kotlin/com/lambda/client/module/modules/player/PacketLimiter.kt b/src/main/kotlin/com/lambda/client/module/modules/player/PacketLimiter.kt index 18684a237..bf4a41e52 100644 --- a/src/main/kotlin/com/lambda/client/module/modules/player/PacketLimiter.kt +++ b/src/main/kotlin/com/lambda/client/module/modules/player/PacketLimiter.kt @@ -13,7 +13,7 @@ import kotlin.math.min object PacketLimiter : Module( name = "PacketLimiter", - description = "Adjust timer automatically to ensure not sending too many movement packets", + description = "Automatically adjusts timer to prevent sending excess movement packets", category = Category.PLAYER, modulePriority = 1000 ) { @@ -102,4 +102,4 @@ object PacketLimiter : Module( private fun limit(input: Float, max: Float) = if (input > max) max / input else null -} \ No newline at end of file +} diff --git a/src/main/kotlin/com/lambda/client/module/modules/player/PortalGodMode.kt b/src/main/kotlin/com/lambda/client/module/modules/player/PortalGodMode.kt index 19438be3e..01d35f06a 100644 --- a/src/main/kotlin/com/lambda/client/module/modules/player/PortalGodMode.kt +++ b/src/main/kotlin/com/lambda/client/module/modules/player/PortalGodMode.kt @@ -9,7 +9,7 @@ import net.minecraft.network.play.client.CPacketConfirmTeleport object PortalGodMode : Module( name = "PortalGodMode", - description = "Don't take damage in portals", + description = "Prevents taking damage in portals", category = Category.PLAYER ) { private val instantTeleport by setting("Instant Teleport", true) @@ -35,4 +35,4 @@ object PortalGodMode : Module( packet = it.packet } } -} \ No newline at end of file +}