aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/dulkirmod/command/EnchantRuneCommand.kt
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/kotlin/dulkirmod/command/EnchantRuneCommand.kt')
-rw-r--r--src/main/kotlin/dulkirmod/command/EnchantRuneCommand.kt12
1 files changed, 2 insertions, 10 deletions
diff --git a/src/main/kotlin/dulkirmod/command/EnchantRuneCommand.kt b/src/main/kotlin/dulkirmod/command/EnchantRuneCommand.kt
index 40cdc6c..36e8b69 100644
--- a/src/main/kotlin/dulkirmod/command/EnchantRuneCommand.kt
+++ b/src/main/kotlin/dulkirmod/command/EnchantRuneCommand.kt
@@ -1,23 +1,15 @@
package dulkirmod.command
import dulkirmod.DulkirMod.Companion.config
-import dulkirmod.DulkirMod.Companion.mc
+import dulkirmod.utils.TextUtils
import net.minecraft.command.CommandException
import net.minecraft.command.ICommandSender
-import net.minecraft.util.ChatComponentText
-import net.minecraft.util.EnumChatFormatting
class EnchantRuneCommand : ClientCommandBase("enchantrune") {
@Throws(CommandException::class)
override fun processCommand(sender: ICommandSender, args: Array<String>) {
- mc.thePlayer.addChatMessage(
- ChatComponentText(
- EnumChatFormatting.BLUE.toString() + "" + "Enchant rune hider toggled - now: " +
- EnumChatFormatting.GREEN + !config.hideEnchantRune
- )
- )
config.hideEnchantRune = !config.hideEnchantRune
-
+ TextUtils.toggledMessage("Enchant Rune Hider", config.hideEnchantRune)
config.markDirty()
config.writeData()
}