1
0
mirror of https://github.com/ComfyFactory/ComfyFactorio.git synced 2025-03-19 21:10:19 +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

@ -713,7 +713,7 @@ commands.add_command(
local func, err = loadstring(param) local func, err = loadstring(param)
if not func then raw_print(err) return end if not func then raw_print(err) return end
_, err2 = pcall(func) local _, err2 = pcall(func)
if err2 then raw_print(err2) return end if err2 then raw_print(err2) return end
end) end)