diff options
author | Elias Fleckenstein <eliasfleckenstein@web.de> | 2020-08-15 16:32:16 +0200 |
---|---|---|
committer | Elias Fleckenstein <eliasfleckenstein@web.de> | 2020-08-15 16:32:16 +0200 |
commit | 9dc3eb7770d1aced41c2ee781939600c2b7d355d (patch) | |
tree | 94b9dd92482aed10f3ee36d7045025795b126546 | |
parent | 80371bc165f762c015a809b647040b2715c9d2cc (diff) | |
download | dragonfireclient-9dc3eb7770d1aced41c2ee781939600c2b7d355d.tar.xz |
Fixed broken Chatcommands
-rw-r--r-- | clientmods/chat/init.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clientmods/chat/init.lua b/clientmods/chat/init.lua index 5b3ca7971..4c11e40f9 100644 --- a/clientmods/chat/init.lua +++ b/clientmods/chat/init.lua @@ -3,7 +3,7 @@ chat = {} chat.rainbow = dofile(minetest.get_modpath("chat") .. "/rainbow.lua") function chat.send(message) - local starts_with = message:sub(1,1) == "/" + local starts_with = message:sub(1, 1) if starts_with == "/" or starts_with == "." then return end |