]> git.lizzy.rs Git - xdecor.git/blobdiff - init.lua
Cooking: Regain health/satiation the right way
[xdecor.git] / init.lua
index 0dbbf052780be22fb1c2875c3712eaf7f1eeda48..629daee3e4d58c7dabc480cc2ab6f9dd7e8c1c35 100644 (file)
--- a/init.lua
+++ b/init.lua
@@ -1,14 +1,24 @@
+--local t = os.clock()
 xdecor = {}
-modpath = minetest.get_modpath("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.."/crafts.lua")
---dofile(modpath.."/enchanting.lua") -- In development.
-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))