diff options
| author | Alexander Pickering <alexandermpickering@gmail.com> | 2017-05-07 13:47:40 -0400 |
|---|---|---|
| committer | Alexander Pickering <alexandermpickering@gmail.com> | 2017-05-07 13:47:40 -0400 |
| commit | 9e0537b0aa417e88a6a61238484ddcef74080ae0 (patch) | |
| tree | e2bd590ec3de41d384aa5f6206b14e1a73647846 /gamemode/cl_init.lua | |
| parent | 191ba416c8b611ea4901cead138789a357c56134 (diff) | |
| download | artery-9e0537b0aa417e88a6a61238484ddcef74080ae0.tar.gz artery-9e0537b0aa417e88a6a61238484ddcef74080ae0.tar.bz2 artery-9e0537b0aa417e88a6a61238484ddcef74080ae0.zip | |
Added tons of stuff
Diffstat (limited to 'gamemode/cl_init.lua')
| -rw-r--r-- | gamemode/cl_init.lua | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gamemode/cl_init.lua b/gamemode/cl_init.lua index 6b5d18a..2f80ddd 100644 --- a/gamemode/cl_init.lua +++ b/gamemode/cl_init.lua @@ -1 +1,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 |
