diff options
author | Elias Fleckenstein <eliasfleckenstein@web.de> | 2020-11-02 17:18:04 +0100 |
---|---|---|
committer | Elias Fleckenstein <eliasfleckenstein@web.de> | 2020-11-02 17:18:04 +0100 |
commit | 62958bd603f46004de6e31b38721a15f5f34302b (patch) | |
tree | d1da9ae45e2d891adf865853b267c592d5e8ca26 /builtin/client/cheats/chat.lua | |
parent | 00d51fbd56743a4ee091d2956a70d6d5e6e1fda3 (diff) | |
download | dragonfireclient-62958bd603f46004de6e31b38721a15f5f34302b.tar.xz |
Reverted accidental commit in wrong repo
This reverts commit 00d51fbd56743a4ee091d2956a70d6d5e6e1fda3.
Diffstat (limited to 'builtin/client/cheats/chat.lua')
-rw-r--r-- | builtin/client/cheats/chat.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/builtin/client/cheats/chat.lua b/builtin/client/cheats/chat.lua index 0763909df..1f3ecbaa2 100644 --- a/builtin/client/cheats/chat.lua +++ b/builtin/client/cheats/chat.lua @@ -22,10 +22,10 @@ function core.send_colorized(message) message = msg end - local use_chat_color = core.settings:get_bool("use_chat_color") + local use_chat_color = core.settings:get("use_chat_color") local color = core.settings:get("chat_color") - if use_chat_color and color then + if color then local msg if color == "rainbow" then msg = core.rainbow(message) |