Skip to content

Commit 5d2f7de

Browse files
Updated a bundle of module descriptions (#473)
* Updated BedAura module description Just updated the wording a little * Updated MidClickPearl module description Shortened the description a little bit, removed automatically entirely from the sentence as I believe it is self explanatory without it. * Updated module description Just changed Modify to Modifies as that is a better word to use in this scenario, being the correct word used to refer to another person, or in this scenario a program/module! * Updated module description Extremely minor, just swapped when to from. Just a better word overall to use in this context * Updated module description Auto remount allows you to automatically remount not just a horse, but a boat, donkey, pig, and a few more entities, so I changed horse to rideable entities to better describe the function of the module.
1 parent 81e9f30 commit 5d2f7de

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

Diff for: src/main/kotlin/com/lambda/client/module/modules/combat/BedAura.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ import java.util.*
3838
@CombatManager.CombatModule
3939
object BedAura : Module(
4040
name = "BedAura",
41-
description = "Place bed and kills enemies",
41+
description = "Places beds to kill enemies",
4242
category = Category.COMBAT,
4343
modulePriority = 70
4444
) {
@@ -231,4 +231,4 @@ object BedAura : Module(
231231
private fun SafeClientEvent.resetRotation() {
232232
lastRotation = Vec2f(RotationUtils.normalizeAngle(player.rotationYaw), player.rotationPitch)
233233
}
234-
}
234+
}

Diff for: src/main/kotlin/com/lambda/client/module/modules/combat/MidClickPearl.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import org.lwjgl.input.Mouse
1616

1717
object MidClickPearl : Module(
1818
name = "MidClickPearl",
19-
description = "Throws a pearl automatically when you middle click in air",
19+
description = "Throws a pearl upon middle clicking in the air",
2020
category = Category.COMBAT
2121
) {
2222
private var prevSlot = -1
@@ -54,4 +54,4 @@ object MidClickPearl : Module(
5454
}
5555
}
5656
}
57-
}
57+
}

Diff for: src/main/kotlin/com/lambda/client/module/modules/movement/AntiHunger.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import net.minecraft.network.play.client.CPacketPlayer
1414
*/
1515
object AntiHunger : Module(
1616
name = "AntiHunger",
17-
description = "Reduces hunger lost when moving around",
17+
description = "Reduces hunger lost from moving around",
1818
category = Category.MOVEMENT
1919
) {
2020
private val cancelMovementState by setting("Cancel Movement State", true)
@@ -35,4 +35,4 @@ object AntiHunger : Module(
3535
}
3636
}
3737
}
38-
}
38+
}

Diff for: src/main/kotlin/com/lambda/client/module/modules/movement/AutoRemount.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import net.minecraftforge.fml.common.gameevent.TickEvent
1313

1414
object AutoRemount : Module(
1515
name = "AutoRemount",
16-
description = "Automatically remounts your horse",
16+
description = "Automatically remounts your ridable entity",
1717
category = Category.MOVEMENT
1818
) {
1919
private val boat by setting("Boats", true)
@@ -59,4 +59,4 @@ object AutoRemount : Module(
5959
|| pig && entity is EntityPig && entity.saddled
6060
|| llama && entity is EntityLlama)
6161
}
62-
}
62+
}

Diff for: src/main/kotlin/com/lambda/client/module/modules/render/BossStack.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import kotlin.math.roundToInt
1919

2020
object BossStack : Module(
2121
name = "BossStack",
22-
description = "Modify the boss health GUI to take up less space",
22+
description = "Modifies the boss health GUI to take up less space",
2323
category = Category.RENDER
2424
) {
2525
private val mode by setting("Mode", BossStackMode.STACK)
@@ -132,4 +132,4 @@ object BossStack : Module(
132132
glColor4f(1.0f, 1.0f, 1.0f, 1.0f)
133133
mc.profiler.endSection()
134134
}
135-
}
135+
}

0 commit comments

Comments
 (0)