aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/dulkirmod/command/HurtCamCommand.kt
blob: 200fa22e6e1d84b1272dff3a75e6f04f1258e2a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package dulkirmod.command

import dulkirmod.config.Config
import dulkirmod.utils.TextUtils
import net.minecraft.command.CommandException
import net.minecraft.command.ICommandSender

class HurtCamCommand : ClientCommandBase("ouch") {
    @Throws(CommandException::class)
    override fun processCommand(sender: ICommandSender, args: Array<String>) {
        Config.hurtCamIntensity = 7f
        TextUtils.info("§6§lOUCH! THAT HURT!")
    }
}