blob: 2f80dddc69f50b555daec010e7cad14a561bc51c (
plain)
1
2
3
4
5
6
7
8
9
10
|
--Find out where all our prints are comming from!
local oldprint = print
print = function(...)
oldprint(unpack({...}))
oldprint(debug.traceback())
end
include( "shared.lua" )
print = oldprint
|