aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/dulkirmod/command/HelpCommand.kt
blob: 2b7a9b05bcea7e0ad2f094517c1ae7aea1a4dc92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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)
    }
}