1
0
mirror of https://github.com/ComfyFactory/ComfyFactorio.git synced 2025-03-17 20:58:13 +02:00

minor fix

This commit is contained in:
Gerkiz 2020-04-05 18:39:16 +02:00 committed by GitHub
parent 58427b8083
commit 8e507a8984
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -700,7 +700,7 @@ function Public.query_online_players()
end
--- The command 'cc' is only used by the server so it can communicate through the webpanel api to the instances that it starts.
-- Doing this, enables achivements and the webpanel can communicate without any interruptions.
-- Doing this, enables achivements and the webpanel can communicate without any interruptions.
commands.add_command(
'cc',
'Evaluate command',
@ -713,7 +713,7 @@ commands.add_command(
local func, err = loadstring(param)
if not func then raw_print(err) return end
_, err2 = pcall(func)
local _, err2 = pcall(func)
if err2 then raw_print(err2) return end
end)