Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated a bundle of module descriptions #473

Merged
merged 5 commits into from
Jan 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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
) {
Expand Down Expand Up @@ -231,4 +231,4 @@ object BedAura : Module(
private fun SafeClientEvent.resetRotation() {
lastRotation = Vec2f(RotationUtils.normalizeAngle(player.rotationYaw), player.rotationPitch)
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -54,4 +54,4 @@ object MidClickPearl : Module(
}
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -35,4 +35,4 @@ object AntiHunger : Module(
}
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -59,4 +59,4 @@ object AutoRemount : Module(
|| pig && entity is EntityPig && entity.saddled
|| llama && entity is EntityLlama)
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -132,4 +132,4 @@ object BossStack : Module(
glColor4f(1.0f, 1.0f, 1.0f, 1.0f)
mc.profiler.endSection()
}
}
}