mirror of
https://github.com/IgorTimofeev/MineOS.git
synced 2026-04-03 22:52:48 +02:00
Image lib convolution filter support
This commit is contained in:
@@ -2924,10 +2924,18 @@ _G.print = function(...)
|
||||
end
|
||||
end
|
||||
|
||||
local args = {...}
|
||||
local args, arg = {...}
|
||||
|
||||
for i = 1, #args do
|
||||
args[i] = tostring(args[i])
|
||||
arg = args[i]
|
||||
|
||||
if type(arg) == "table" then
|
||||
arg = text.serialize(arg, true, " ", 3)
|
||||
else
|
||||
arg = tostring(arg)
|
||||
end
|
||||
|
||||
args[i] = arg
|
||||
end
|
||||
|
||||
args = table.concat(args, " ")
|
||||
|
||||
Reference in New Issue
Block a user