Skip to content

Commit a16e98c

Browse files
Updated module descriptions (#372)
* Updated module description Changed wording to be more clear and grammatically correct :3 * Updated module description Fixed up description to be shorter and easier to understand * 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. * 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. * Updated description
1 parent acb91c6 commit a16e98c

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

src/main/kotlin/com/lambda/client/module/modules/player/NoGhostItems.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import com.lambda.mixin.player.MixinPlayerControllerMP
1414
*/
1515
object NoGhostItems : Module(
1616
name = "NoGhostItems",
17-
description = "Syncs inventory transactions for strict environments",
17+
description = "Syncs inventory interactions for strict environments",
1818
category = Category.PLAYER
1919
) {
2020
val syncMode by setting("Scope", SyncMode.MODULES)
@@ -41,4 +41,4 @@ object NoGhostItems : Module(
4141
false
4242
}
4343
}
44-
}
44+
}

src/main/kotlin/com/lambda/client/module/modules/player/PacketCancel.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import net.minecraft.network.status.server.SPacketServerInfo
1818

1919
object PacketCancel : Module(
2020
name = "PacketCancel",
21-
description = "Cancels specific packets used for various actions",
21+
description = "Cancels specific packets for various interactions",
2222
category = Category.PLAYER
2323
) {
2424
enum class Side {
@@ -285,4 +285,4 @@ object PacketCancel : Module(
285285
}
286286
}
287287
}
288-
}
288+
}

src/main/kotlin/com/lambda/client/module/modules/player/PacketLimiter.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import kotlin.math.min
1313

1414
object PacketLimiter : Module(
1515
name = "PacketLimiter",
16-
description = "Adjust timer automatically to ensure not sending too many movement packets",
16+
description = "Automatically adjusts timer to prevent sending excess movement packets",
1717
category = Category.PLAYER,
1818
modulePriority = 1000
1919
) {
@@ -102,4 +102,4 @@ object PacketLimiter : Module(
102102

103103
private fun limit(input: Float, max: Float) =
104104
if (input > max) max / input else null
105-
}
105+
}

src/main/kotlin/com/lambda/client/module/modules/player/PortalGodMode.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import net.minecraft.network.play.client.CPacketConfirmTeleport
99

1010
object PortalGodMode : Module(
1111
name = "PortalGodMode",
12-
description = "Don't take damage in portals",
12+
description = "Prevents taking damage in portals",
1313
category = Category.PLAYER
1414
) {
1515
private val instantTeleport by setting("Instant Teleport", true)
@@ -35,4 +35,4 @@ object PortalGodMode : Module(
3535
packet = it.packet
3636
}
3737
}
38-
}
38+
}

0 commit comments

Comments
 (0)