diff --git a/src/main/kotlin/com/lambda/client/module/modules/combat/BedAura.kt b/src/main/kotlin/com/lambda/client/module/modules/combat/BedAura.kt index 924e75596..4eb7b146b 100644 --- a/src/main/kotlin/com/lambda/client/module/modules/combat/BedAura.kt +++ b/src/main/kotlin/com/lambda/client/module/modules/combat/BedAura.kt @@ -38,7 +38,7 @@ import java.util.* @CombatManager.CombatModule object BedAura : Module( name = "BedAura", - description = "Place bed and kills enemies", + description = "Places beds to kill enemies", category = Category.COMBAT, modulePriority = 70 ) { @@ -231,4 +231,4 @@ object BedAura : Module( private fun SafeClientEvent.resetRotation() { lastRotation = Vec2f(RotationUtils.normalizeAngle(player.rotationYaw), player.rotationPitch) } -} \ No newline at end of file +} diff --git a/src/main/kotlin/com/lambda/client/module/modules/combat/MidClickPearl.kt b/src/main/kotlin/com/lambda/client/module/modules/combat/MidClickPearl.kt index 4a5d758ee..c20a8bb79 100644 --- a/src/main/kotlin/com/lambda/client/module/modules/combat/MidClickPearl.kt +++ b/src/main/kotlin/com/lambda/client/module/modules/combat/MidClickPearl.kt @@ -16,7 +16,7 @@ import org.lwjgl.input.Mouse object MidClickPearl : Module( name = "MidClickPearl", - description = "Throws a pearl automatically when you middle click in air", + description = "Throws a pearl upon middle clicking in the air", category = Category.COMBAT ) { private var prevSlot = -1 @@ -54,4 +54,4 @@ object MidClickPearl : Module( } } } -} \ No newline at end of file +} diff --git a/src/main/kotlin/com/lambda/client/module/modules/movement/AntiHunger.kt b/src/main/kotlin/com/lambda/client/module/modules/movement/AntiHunger.kt index bbca6e3be..752d3f295 100644 --- a/src/main/kotlin/com/lambda/client/module/modules/movement/AntiHunger.kt +++ b/src/main/kotlin/com/lambda/client/module/modules/movement/AntiHunger.kt @@ -14,7 +14,7 @@ import net.minecraft.network.play.client.CPacketPlayer */ object AntiHunger : Module( name = "AntiHunger", - description = "Reduces hunger lost when moving around", + description = "Reduces hunger lost from moving around", category = Category.MOVEMENT ) { private val cancelMovementState by setting("Cancel Movement State", true) @@ -35,4 +35,4 @@ object AntiHunger : Module( } } } -} \ No newline at end of file +} diff --git a/src/main/kotlin/com/lambda/client/module/modules/movement/AutoRemount.kt b/src/main/kotlin/com/lambda/client/module/modules/movement/AutoRemount.kt index 1d67e1664..54f5093c5 100644 --- a/src/main/kotlin/com/lambda/client/module/modules/movement/AutoRemount.kt +++ b/src/main/kotlin/com/lambda/client/module/modules/movement/AutoRemount.kt @@ -13,7 +13,7 @@ import net.minecraftforge.fml.common.gameevent.TickEvent object AutoRemount : Module( name = "AutoRemount", - description = "Automatically remounts your horse", + description = "Automatically remounts your ridable entity", category = Category.MOVEMENT ) { private val boat by setting("Boats", true) @@ -59,4 +59,4 @@ object AutoRemount : Module( || pig && entity is EntityPig && entity.saddled || llama && entity is EntityLlama) } -} \ No newline at end of file +} diff --git a/src/main/kotlin/com/lambda/client/module/modules/render/BossStack.kt b/src/main/kotlin/com/lambda/client/module/modules/render/BossStack.kt index 24b2b2961..3161c6a42 100644 --- a/src/main/kotlin/com/lambda/client/module/modules/render/BossStack.kt +++ b/src/main/kotlin/com/lambda/client/module/modules/render/BossStack.kt @@ -19,7 +19,7 @@ import kotlin.math.roundToInt object BossStack : Module( name = "BossStack", - description = "Modify the boss health GUI to take up less space", + description = "Modifies the boss health GUI to take up less space", category = Category.RENDER ) { private val mode by setting("Mode", BossStackMode.STACK) @@ -132,4 +132,4 @@ object BossStack : Module( glColor4f(1.0f, 1.0f, 1.0f, 1.0f) mc.profiler.endSection() } -} \ No newline at end of file +}