1
0
mirror of https://github.com/Refactorio/RedMew.git synced 2024-12-12 10:04:40 +02:00

command desync fix

This commit is contained in:
grilledham 2018-06-19 20:09:29 +01:00
parent 699c11ebd4
commit 86b9878736

View File

@ -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
)