util.*: Remove use of module() function, make all module functions local and return them in a table at the end

This commit is contained in:
Kim Alvefur 2015-02-21 10:36:37 +01:00
parent b49513cdeb
commit eaa823a597
35 changed files with 435 additions and 302 deletions

View file

@ -17,7 +17,7 @@ local type = type;
local data = {};
local new_data = {};
module "timer"
local _ENV = nil;
local _add_task;
if not server.event then
@ -78,6 +78,6 @@ else
end
end
add_task = _add_task;
return _M;
return {
add_task = _add_task;
};