diff options
| author | Alexander Pickering <alexandermpickering@gmail.com> | 2018-03-23 15:54:14 -0400 |
|---|---|---|
| committer | Alexander Pickering <alexandermpickering@gmail.com> | 2018-03-23 15:54:14 -0400 |
| commit | 30ca838a3700623dd445df7ceb13d84341dbef64 (patch) | |
| tree | d948e2ca28fcd93dfcd5b218f5e2b300a741eed5 /gamemode/cl_init.lua | |
| parent | 08c0f656531809fb3890ab896ef7a2dd031bb6f0 (diff) | |
| download | artery-30ca838a3700623dd445df7ceb13d84341dbef64.tar.gz artery-30ca838a3700623dd445df7ceb13d84341dbef64.tar.bz2 artery-30ca838a3700623dd445df7ceb13d84341dbef64.zip | |
Switch back to third person
Entire game plays in 3rd person now.
Diffstat (limited to 'gamemode/cl_init.lua')
| -rw-r--r-- | gamemode/cl_init.lua | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gamemode/cl_init.lua b/gamemode/cl_init.lua index 07cd341..5f80850 100644 --- a/gamemode/cl_init.lua +++ b/gamemode/cl_init.lua @@ -6,6 +6,11 @@ print = function(...) 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 |
