【debug】修复部分报错导致报错的问题。。。

dev_chengFeng
gaoxin 2021-06-10 16:11:02 +08:00
parent 4382e822e0
commit 0458ee7bf7
1 changed files with 1 additions and 1 deletions

View File

@ -273,7 +273,7 @@ function MyPCall(func, ...)
local flag, msg = pcall(func)
if not flag then
LogError(msg)
local args = unpack(...)
local args = {...}
if #args > 0 then
local s = ""
for k, v in ipairs(args) do