From 86b98787365a47225210cf6bfeed02c5903c8a40 Mon Sep 17 00:00:00 2001 From: grilledham Date: Tue, 19 Jun 2018 20:09:29 +0100 Subject: [PATCH] command desync fix --- custom_commands.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/custom_commands.lua b/custom_commands.lua index f314a810..3cc2a624 100644 --- a/custom_commands.lua +++ b/custom_commands.lua @@ -569,7 +569,8 @@ if not _DEBUG then local success, error = pcall(func, cmd) if not success then log(error) - player_print(error) + --player_print(error) -- This casues desyncs + player_print('Sorry there was an error running '.. cmd.name) end end )