blob: 21d2e7e3bd1917bdb4f7fe2b1b4b861c649846bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
package dulkirmod.command
import dulkirmod.config.DulkirConfig
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>) {
DulkirConfig.hurtCamIntensity = 7f
TextUtils.info("§6§lOUCH! THAT HURT!")
}
}
|