Skip to content

Commit 7b223c8

Browse files
Fixed multiple module descriptions (#355)
* Improved descriptions Made descriptions clearer and more concise. * Improved description Changed description to describe the function of the module and removed punctuation to fit the overall description style. * Improved description Changed a repeat use of the word in to within, to stay grammatically correct, and removed punctuation to stay within the style of other module's descriptions. * Fixed description The description seemed to be mistakenly copied over from logout logger, which was a cause of confusion. Removed the incorrect description and wrote a new correct one. * Improved description Changed might to attempt, as might is more informal and does not fit the use case as well. * Improved description Edited description as the module only allows you to add delay, not cancel. * Improved description Changed to be more formal and shorter * Improved description Changed description to describe the function of the module and be more explanatory. * Updated description Improved description and made it more descriptive.
1 parent ad58a2b commit 7b223c8

File tree

9 files changed

+15
-15
lines changed

9 files changed

+15
-15
lines changed

src/main/kotlin/com/lambda/client/module/modules/combat/AntiFriendHit.kt

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

1111
object AntiFriendHit : Module(
1212
name = "AntiFriendHit",
13-
description = "Don't hit your friends",
13+
description = "Prevents hitting friends",
1414
category = Category.COMBAT
1515
) {
1616
init {
@@ -22,4 +22,4 @@ object AntiFriendHit : Module(
2222
}
2323
}
2424
}
25-
}
25+
}

src/main/kotlin/com/lambda/client/module/modules/misc/AntiAFK.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import kotlin.random.Random
2828
*/
2929
object AntiAFK : Module(
3030
name = "AntiAFK",
31-
description = "Prevents being kicked for AFK",
31+
description = "Prevents being kicked while AFK",
3232
category = Category.MISC
3333
) {
3434
private val delay by setting("Action Delay", 50, 5..100, 5, unit = " ticks")
@@ -40,7 +40,7 @@ object AntiAFK : Module(
4040
private val turn = setting("Turn", true)
4141
private val walk = setting("Walk", true)
4242
private val radius by setting("Radius", 64, 8..128, 8, fineStep = 1)
43-
private val inputTimeout by setting("Idle Timeout", 0, 0..15, 1, description = "Starts AntiAFK after being idle for longer than specific minutes, 0 to disable", unit = "m")
43+
private val inputTimeout by setting("Idle Timeout", 0, 0..15, 1, description = "Starts AntiAFK after being idle longer than the selected time in minutes, 0 to disable", unit = "m")
4444
private val allowBreak by setting("Allow Breaking Blocks", false, { walk.value })
4545

4646
private var startPos: BlockPos? = null

src/main/kotlin/com/lambda/client/module/modules/misc/AntiDisconnect.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import com.lambda.client.module.Module
55

66
object AntiDisconnect : Module(
77
name = "AntiDisconnect",
8-
description = "Are you sure you want to disconnect?",
8+
description = "Prevents you from accidently disconnecting",
99
category = Category.MISC
1010
) {
1111
val presses by setting("Button Presses", 3, 1..20, 1)
12-
}
12+
}

src/main/kotlin/com/lambda/client/module/modules/misc/MapDownloader.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ import javax.imageio.ImageIO
3030
internal object MapDownloader : Module(
3131
name = "MapDownloader",
3232
category = Category.MISC,
33-
description = "Downloads maps in item frames in your render distance to file."
33+
description = "Downloads maps in item frames within your render distance to file"
3434
) {
3535

3636
private val scale by setting("Scale", 1, 1..20, 1, description = "Higher scale results in higher storage use!")

src/main/kotlin/com/lambda/client/module/modules/misc/MidClickFriends.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import org.lwjgl.input.Mouse
1515

1616
object MidClickFriends : Module(
1717
name = "MidClickFriends",
18-
description = "Logs when a player leaves the game",
18+
description = "Adds a player as a friend upon middle clicking on their hitbox",
1919
category = Category.MISC,
2020
showOnArray = false
2121
) {
@@ -49,4 +49,4 @@ object MidClickFriends : Module(
4949
else MessageSendHelper.sendChatMessage("Failed to find UUID of $name")
5050
}
5151
}
52-
}
52+
}

src/main/kotlin/com/lambda/client/module/modules/misc/MountBypass.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.CPacketUseEntity
99

1010
object MountBypass : Module(
1111
name = "MountBypass",
12-
description = "Might allow you to mount chested animals on servers that block it",
12+
description = "Attempts to allow you to mount chested animals on servers that block it",
1313
category = Category.MISC
1414
) {
1515
init {
@@ -18,4 +18,4 @@ object MountBypass : Module(
1818
if (it.packet.getEntityFromWorld(world) is AbstractChestHorse) it.cancel()
1919
}
2020
}
21-
}
21+
}

src/main/kotlin/com/lambda/client/module/modules/misc/PingSpoof.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import net.minecraft.network.play.server.SPacketKeepAlive
1313

1414
object PingSpoof : Module(
1515
name = "PingSpoof",
16-
description = "Cancels or adds delay to your ping packets",
16+
description = "Adds delay to your packets",
1717
category = Category.MISC
1818
) {
1919
private val delay by setting("Delay", 100, 0..2000, 25, unit = "ms")

src/main/kotlin/com/lambda/client/module/modules/misc/SkinFlicker.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import net.minecraft.entity.player.EnumPlayerModelParts
99

1010
object SkinFlicker : Module(
1111
name = "SkinFlicker",
12-
description = "Toggle your skin layers rapidly for a cool skin effect",
12+
description = "Toggles your skin layers rapidly",
1313
category = Category.MISC
1414
) {
1515
private val mode by setting("Mode", FlickerMode.HORIZONTAL)
@@ -61,4 +61,4 @@ object SkinFlicker : Module(
6161
EnumPlayerModelParts.LEFT_PANTS_LEG,
6262
EnumPlayerModelParts.RIGHT_PANTS_LEG
6363
)
64-
}
64+
}

src/main/kotlin/com/lambda/client/module/modules/movement/EntitySpeed.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import net.minecraft.entity.passive.EntityPig
1111

1212
object EntitySpeed : Module(
1313
name = "EntitySpeed",
14-
description = "Abuse client-sided movement to shape sound barrier breaking rideables",
14+
description = "Abuses client-sided movement to change the speed of rideable entities",
1515
category = Category.MOVEMENT
1616
) {
1717
private val boatSpeed by setting("Boat Speed", 1.4f, 0.1f..10.0f, 0.05f)

0 commit comments

Comments
 (0)