diff options
| author | Alexander Pickering <alexandermpickering@gmail.com> | 2018-01-14 15:40:04 -0500 |
|---|---|---|
| committer | Alexander Pickering <alexandermpickering@gmail.com> | 2018-01-14 15:40:04 -0500 |
| commit | af74cb5987d38c8efc820aa8d41a516ade40bcf2 (patch) | |
| tree | 59f37b7b4dd2898f0d470665c89f722e2aa3ef5f /gamemode/cl_init.lua | |
| parent | 5e4b759e6b4fd8af9e66f76090ee868368bee467 (diff) | |
| download | artery-af74cb5987d38c8efc820aa8d41a516ade40bcf2.tar.gz artery-af74cb5987d38c8efc820aa8d41a516ade40bcf2.tar.bz2 artery-af74cb5987d38c8efc820aa8d41a516ade40bcf2.zip | |
Massive updates
updates to nrequire, only re-includes things out of date
changes to cl_inventory, and config
Diffstat (limited to 'gamemode/cl_init.lua')
| -rw-r--r-- | gamemode/cl_init.lua | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gamemode/cl_init.lua b/gamemode/cl_init.lua index 2f80ddd..07cd341 100644 --- a/gamemode/cl_init.lua +++ b/gamemode/cl_init.lua @@ -1,10 +1,11 @@ --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 +--print = oldprint |
