Added comments and fixed bugs

This commit is contained in:
Cooldude2606
2019-05-20 22:41:10 +01:00
parent 13b34cbd60
commit 6961614d80
11 changed files with 221 additions and 41 deletions

View File

@@ -17,7 +17,7 @@ local interface_modules = {
-- loads all the modules given in the above table
for key,value in pairs(interface_modules) do
if type(value) == 'string' then
interface_modules[key] = require(value)
interface_modules[key] = Common.opt_require(value)
end
end