aboutsummaryrefslogtreecommitdiff
path: root/gamemode/autolua.lua
diff options
context:
space:
mode:
authorAlexander Pickering <alexandermpickering@gmail.com>2017-08-24 20:32:34 -0400
committerAlexander Pickering <alexandermpickering@gmail.com>2017-08-24 20:32:34 -0400
commit233e478e40d72a091f70f18dc6846066a4f52016 (patch)
treecf34be714088889731736c81bd44e198c792625a /gamemode/autolua.lua
parent61bc16dae5a1b61bcd237d9f0be36125829d95b1 (diff)
downloadartery-233e478e40d72a091f70f18dc6846066a4f52016.tar.gz
artery-233e478e40d72a091f70f18dc6846066a4f52016.tar.bz2
artery-233e478e40d72a091f70f18dc6846066a4f52016.zip
Fix all linter warnings
Diffstat (limited to 'gamemode/autolua.lua')
-rw-r--r--gamemode/autolua.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/gamemode/autolua.lua b/gamemode/autolua.lua
index c17ae3b..e38a107 100644
--- a/gamemode/autolua.lua
+++ b/gamemode/autolua.lua
@@ -33,7 +33,7 @@ end
auto.AddMixedFolder = function(dir,recursive)
ExecuteOnFolder(dir,recursive,function(f)
- print("Doing file"..f)
+ print("Doing file" .. f)
if f:find("/cl_%w+%.lua$") then
print("found cl")
if SERVER then AddCSLuaFile(f) else include(f) end