Initialize by removing everything

This commit is contained in:
AliasAlreadyTaken 2022-04-20 16:24:01 +02:00
parent b1f6ea57ef
commit ad612f1cad
1 changed files with 10 additions and 10 deletions

View File

@ -19,17 +19,17 @@ yl_template.information.author = "AliasAlreadyTaken"
yl_template.information.license = "MIT"
yl_template.information.name = "yl_template"
yl_template.information.source = "https://gitea.your-land.de/your-land/yl_template"
yl_template.information.additional = "Additional information"
yl_template.information.additional = "This mod glues together all of the others of your flight"
dofile(yl_template.modpath .. "config.lua")
dofile(yl_template.modpath .. "setup.lua")
dofile(yl_template.modpath .. "privs.lua")
dofile(yl_template.modpath .. "internal.lua")
dofile(yl_template.modpath .. "api.lua")
dofile(yl_template.modpath .. "distinct_feature.lua")
dofile(yl_template.modpath .. "overwrite_feature.lua")
dofile(yl_template.modpath .. "globalsteps.lua")
dofile(yl_template.modpath .. "chatcommands.lua")
--dofile(yl_template.modpath .. "config.lua")
--dofile(yl_template.modpath .. "setup.lua")
--dofile(yl_template.modpath .. "privs.lua")
--dofile(yl_template.modpath .. "internal.lua")
--dofile(yl_template.modpath .. "api.lua")
--dofile(yl_template.modpath .. "distinct_feature.lua")
--dofile(yl_template.modpath .. "overwrite_feature.lua")
--dofile(yl_template.modpath .. "globalsteps.lua")
--dofile(yl_template.modpath .. "chatcommands.lua")
local mod_end_time = (core.get_us_time() - mod_start_time) / 1000000
core.log("action", "[MOD] yl_template loaded in [" .. mod_end_time .. "s]")