diff options
-rw-r--r-- | docs/chattabs.md | 1 | ||||
-rw-r--r-- | src/main/kotlin/cc/woverflow/chatting/Chatting.kt | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/docs/chattabs.md b/docs/chattabs.md index b8ce66d..0738310 100644 --- a/docs/chattabs.md +++ b/docs/chattabs.md @@ -229,6 +229,7 @@ This can be used to automatically send messages in a specific channel in servers ### Version 4 - Added color text options (`color`, `hovered_color`, and `selected_color`) +- `version` is now actually an integer ### Version 3 - Added `ignore_` options (`ignore_starts`, `ignore_ends`, `ignore_equals`, and `ignore_regex`) diff --git a/src/main/kotlin/cc/woverflow/chatting/Chatting.kt b/src/main/kotlin/cc/woverflow/chatting/Chatting.kt index fa24065..0fe85f9 100644 --- a/src/main/kotlin/cc/woverflow/chatting/Chatting.kt +++ b/src/main/kotlin/cc/woverflow/chatting/Chatting.kt @@ -73,7 +73,7 @@ object Chatting { @Mod.EventHandler fun onInitialization(event: FMLInitializationEvent) { ChattingConfig.preload() - command("chatting", aliases = arrayListOf("stratus")) { + command("chatting") { main { ChattingConfig.openScreen() } |