fixed that issue with log() where it DOESN'T WORK

This commit is contained in:
Izaya 2017-09-09 21:23:26 +10:00
parent a7be3ada0d
commit 48f3576581
1 changed files with 2 additions and 2 deletions

View File

@ -19,9 +19,9 @@ if component then
table.remove(logt,1) table.remove(logt,1)
end end
end end
Log = "" _G.Log = ""
for k,v in ipairs(logt) do for k,v in ipairs(logt) do
Log=Log .. v .. "\n" _G.Log=_G.Log .. v .. "\n"
end end
end end
print=log print=log