From a4b3e7314046d4ba214dc95136cb62a2f7fabb08 Mon Sep 17 00:00:00 2001 From: CozyMeli-gitv2 <110065125+CozyMeli-gitv2@users.noreply.github.com> Date: Fri, 12 Aug 2022 19:53:11 -0400 Subject: [PATCH 1/5] Updated module description Changed wording to be more clear and grammatically correct :3 --- .../com/lambda/client/module/modules/player/PortalGodMode.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 +} From 710bee1c18bb93ae5ee28898239a4a8a9673796e Mon Sep 17 00:00:00 2001 From: CozyMeli-gitv2 <110065125+CozyMeli-gitv2@users.noreply.github.com> Date: Fri, 12 Aug 2022 19:56:49 -0400 Subject: [PATCH 2/5] Updated module description Fixed up description to be shorter and easier to understand --- .../com/lambda/client/module/modules/player/PacketLimiter.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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..4d4a54355 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 adjust 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 +} From 9dda565efce79171a18defbde4c8d8fb9b622a6d Mon Sep 17 00:00:00 2001 From: CozyMeli-gitv2 <110065125+CozyMeli-gitv2@users.noreply.github.com> Date: Fri, 12 Aug 2022 20:02:09 -0400 Subject: [PATCH 3/5] Updated module description Removed the word used as the sentence makes the utilization clear without, and changed action to interaction as the player has interactions with the world, not actions. --- .../com/lambda/client/module/modules/player/PacketCancel.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 +} From 1298ad4c906bf83e947e3550b114ad3279677e8e Mon Sep 17 00:00:00 2001 From: CozyMeli-gitv2 <110065125+CozyMeli-gitv2@users.noreply.github.com> Date: Fri, 12 Aug 2022 20:07:20 -0400 Subject: [PATCH 4/5] Updated module description Changed transactions to interactions, as interactions is a word that better suits the intent of the sentence and reflects what a player is doing, interacting with their inventory, not making a transaction. --- .../com/lambda/client/module/modules/player/NoGhostItems.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 +} From 3b279e8349f8a913d3257f9affba9e5f1989a3b7 Mon Sep 17 00:00:00 2001 From: CozyMeli-gitv2 <110065125+CozyMeli-gitv2@users.noreply.github.com> Date: Fri, 12 Aug 2022 20:08:44 -0400 Subject: [PATCH 5/5] Updated description --- .../com/lambda/client/module/modules/player/PacketLimiter.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 4d4a54355..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 = "Automatically adjust timer to prevent sending excess movement packets", + description = "Automatically adjusts timer to prevent sending excess movement packets", category = Category.PLAYER, modulePriority = 1000 ) {