summaryrefslogtreecommitdiff
path: root/gamemode/utility.lua
diff options
context:
space:
mode:
authorAlexander Pickering <alexandermpickering@gmail.com>2016-05-15 15:28:57 -0400
committerAlexander Pickering <alexandermpickering@gmail.com>2016-05-15 15:28:57 -0400
commit0aaea91ed95623230e553c3e5bf354d27a55f945 (patch)
tree377e97ad97b00409213a1409fd33d33734e69c36 /gamemode/utility.lua
parent55bf96319e587bc199eb8dd126ec1ccc1b085ecc (diff)
downloadgmstranded-0aaea91ed95623230e553c3e5bf354d27a55f945.tar.gz
gmstranded-0aaea91ed95623230e553c3e5bf354d27a55f945.tar.bz2
gmstranded-0aaea91ed95623230e553c3e5bf354d27a55f945.zip
Fixed spelling error in utility.lua
Diffstat (limited to 'gamemode/utility.lua')
-rw-r--r--gamemode/utility.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/gamemode/utility.lua b/gamemode/utility.lua
index be9ae0f..d11797b 100644
--- a/gamemode/utility.lua
+++ b/gamemode/utility.lua
@@ -2,7 +2,7 @@
print("Utility.lua included!")
function findRecursive(folderstring,recursive,dofunction)
- local folderpath = "gamemodes/" .. GAMEMODE.GAMEMODE_FOLDER_NAME .. "/gamemode/" .. folderstring .. "/"
+ local folderpath = "gamemodes/" .. GM.GAMEMODE_FOLDER_NAME .. "/gamemode/" .. folderstring .. "/"
local files, directories = file.Find(folderpath .. "*", "MOD")
for k,v in pairs(files) do
dofunction(folderstring .. "/".. v)