X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=init.lua;h=629daee3e4d58c7dabc480cc2ab6f9dd7e8c1c35;hb=16ea4a7385d180d69eb4c8f62f7b16ba5047647a;hp=1f703e287b40fc243a60925e14fb946c8d47985d;hpb=4c0441527f8340c1e23c178cbb44e10d87e67cef;p=xdecor.git diff --git a/init.lua b/init.lua index 1f703e2..629daee 100644 --- a/init.lua +++ b/init.lua @@ -1,15 +1,24 @@ +--local t = os.clock() xdecor = {} local modpath = minetest.get_modpath("xdecor") +-- Handlers. +dofile(modpath.."/handlers/animations.lua") +dofile(modpath.."/handlers/helpers.lua") dofile(modpath.."/handlers/nodeboxes.lua") dofile(modpath.."/handlers/registration.lua") -dofile(modpath.."/aliases.lua") -dofile(modpath.."/crafts.lua") -dofile(modpath.."/enchanting.lua") -dofile(modpath.."/hive.lua") -dofile(modpath.."/itemframe.lua") -dofile(modpath.."/mailbox.lua") -dofile(modpath.."/rope.lua") -dofile(modpath.."/nodes.lua") -dofile(modpath.."/worktable.lua") -dofile(modpath.."/xwall.lua") + +-- Item files. +dofile(modpath.."/src/chess.lua") +dofile(modpath.."/src/cooking.lua") +dofile(modpath.."/src/craftitems.lua") +dofile(modpath.."/src/enchanting.lua") +dofile(modpath.."/src/hive.lua") +dofile(modpath.."/src/itemframe.lua") +dofile(modpath.."/src/mailbox.lua") +dofile(modpath.."/src/mechanisms.lua") +dofile(modpath.."/src/nodes.lua") +dofile(modpath.."/src/recipes.lua") +dofile(modpath.."/src/rope.lua") +dofile(modpath.."/src/workbench.lua") +--print(string.format("[xdecor] loaded in %.2f ms", (os.clock()-t)*1000))