blob: 7269d7af33e9773239783c24f0ca49934970f745 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
package dulkirmod.command
import dulkirmod.utils.TextUtils
import net.minecraft.command.CommandException
import net.minecraft.command.ICommandSender
class HelpCommand : ClientCommandBase("dulkirhelp") {
@Throws(CommandException::class)
override fun processCommand(sender: ICommandSender, args: Array<String>) {
TextUtils.info("§6§l HI THIS IS DULKIRMOD!", false)
TextUtils.info(" §7/enchantrune - toggles enchant rune visibility.", false)
TextUtils.info(" §7/fairy - toggles healer fairy visibility.", false)
TextUtils.info(" §7/hl - helps change highlighted leap player on the fly.", false)
TextUtils.info(" §7/farmcontrols - swaps some keybinds and adjusts sens to be better suited for farming", false)
}
}
|