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 module descriptions #372

Merged
merged 5 commits into from
Aug 25, 2022
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 @@ -14,7 +14,7 @@ import com.lambda.mixin.player.MixinPlayerControllerMP
*/
object NoGhostItems : Module(
name = "NoGhostItems",
description = "Syncs inventory transactions for strict environments",
description = "Syncs inventory interactions for strict environments",
category = Category.PLAYER
) {
val syncMode by setting("Scope", SyncMode.MODULES)
Expand All @@ -41,4 +41,4 @@ object NoGhostItems : Module(
false
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import net.minecraft.network.status.server.SPacketServerInfo

object PacketCancel : Module(
name = "PacketCancel",
description = "Cancels specific packets used for various actions",
description = "Cancels specific packets for various interactions",
category = Category.PLAYER
) {
enum class Side {
Expand Down Expand Up @@ -285,4 +285,4 @@ object PacketCancel : Module(
}
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import kotlin.math.min

object PacketLimiter : Module(
name = "PacketLimiter",
description = "Adjust timer automatically to ensure not sending too many movement packets",
description = "Automatically adjusts timer to prevent sending excess movement packets",
category = Category.PLAYER,
modulePriority = 1000
) {
Expand Down Expand Up @@ -102,4 +102,4 @@ object PacketLimiter : Module(

private fun limit(input: Float, max: Float) =
if (input > max) max / input else null
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import net.minecraft.network.play.client.CPacketConfirmTeleport

object PortalGodMode : Module(
name = "PortalGodMode",
description = "Don't take damage in portals",
description = "Prevents taking damage in portals",
category = Category.PLAYER
) {
private val instantTeleport by setting("Instant Teleport", true)
Expand All @@ -35,4 +35,4 @@ object PortalGodMode : Module(
packet = it.packet
}
}
}
}