]> git.lizzy.rs Git - xdecor.git/blobdiff - init.lua
Crafting guide : protect functions access
[xdecor.git] / init.lua
index bab7b14b4d310cd7c1d99937ce2af943c7163677..df420f1eb5b9c6e323d0394ed8d625d0007ab75d 100644 (file)
--- a/init.lua
+++ b/init.lua
@@ -2,11 +2,16 @@
 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")
+
+-- Item files.
 dofile(modpath.."/chess.lua")
 dofile(modpath.."/cooking.lua")
+dofile(modpath.."/craftguide.lua")
 dofile(modpath.."/craftitems.lua")
 dofile(modpath.."/enchanting.lua")
 dofile(modpath.."/hive.lua")
@@ -15,7 +20,6 @@ dofile(modpath.."/mailbox.lua")
 dofile(modpath.."/nodes.lua")
 dofile(modpath.."/recipes.lua")
 dofile(modpath.."/rope.lua")
-dofile(modpath.."/sitting.lua")
 dofile(modpath.."/worktable.lua")
 dofile(modpath.."/xwall.lua")
 --print(string.format("[xdecor] loaded in %.2f ms", (os.clock()-t)*1000))