Skip to content

Updated two module descriptions to make them clearer and more consice. #437

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

Merged
merged 2 commits into from
Dec 18, 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 @@ -12,7 +12,7 @@ import net.minecraftforge.client.event.ClientChatReceivedEvent

object ChatTimestamp : Module(
name = "ChatTimestamp",
description = "Shows the time a message was sent beside the message",
description = "Displays the time a message was sent beside it",
category = Category.CHAT,
showOnArray = false
) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import kotlin.math.min

object EyeFinder : Module(
name = "EyeFinder",
description = "Draw lines from entity's heads to where they are looking",
description = "Draws lines from entity's heads to where they are looking",
category = Category.RENDER
) {
private val page by setting("Page", Page.ENTITY_TYPE)
Expand Down Expand Up @@ -131,4 +131,4 @@ object EyeFinder : Module(
renderer.render(true)
}
}
}
}