From 193828602b8ce726eca39a6ffa920d9d0f78357b Mon Sep 17 00:00:00 2001 From: Coder12a <38924418+Coder12a@users.noreply.github.com> Date: Wed, 22 May 2019 18:43:41 -0500 Subject: [PATCH] Fix: chat cmd not working --- chatcommands.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/chatcommands.lua b/chatcommands.lua index c3392c3..4349132 100644 --- a/chatcommands.lua +++ b/chatcommands.lua @@ -1404,11 +1404,12 @@ factions.register_command("chat", { description = "Send a message to your faction's members", description_arg = " :", global_privileges = def_global_privileges, + format = {"string"}, on_success = function(player, faction, pos, parcelpos, args) local msg = table.concat(args.strings, " ") factions.broadcast(faction.name, msg, player) end -},true) +}, true) factions.register_command("force_update", { description = "Forces an update tick.",