blob: 5f80850616b1c109dbd85ffa216e7a0ae3dedb62 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
--Find out where all our prints are comming from!
--[[
local oldprint = print
print = function(...)
oldprint(unpack({...}))
oldprint(debug.traceback())
end
]]
--[[Create folders before doing anything else]]--
file.CreateDir("artery")
file.CreateDir("artery/client")
file.CreateDir("artery/pacs")
include( "shared.lua" )
--print = oldprint
|