summaryrefslogtreecommitdiff
path: root/castle/init.lua
diff options
context:
space:
mode:
Diffstat (limited to 'castle/init.lua')
-rw-r--r--castle/init.lua11
1 files changed, 0 insertions, 11 deletions
diff --git a/castle/init.lua b/castle/init.lua
index 11b239d..d57967e 100644
--- a/castle/init.lua
+++ b/castle/init.lua
@@ -1,16 +1,5 @@
castle = {}
--- use this when you have a "wallmounted" node that should never be oriented
--- to floor or ceiling (e.g. a tapestry)
-
-function castle.fix_rotation_nsew(pos, placer, itemstack, pointed_thing)
- local node = minetest.get_node(pos)
- local yaw = placer:get_look_yaw()
- local dir = minetest.yaw_to_dir(yaw)
- local fdir = minetest.dir_to_wallmounted(dir)
- minetest.swap_node(pos, { name = node.name, param2 = fdir })
-end
-
dofile(minetest.get_modpath("castle").."/pillars.lua")
dofile(minetest.get_modpath("castle").."/arrowslit.lua")
dofile(minetest.get_modpath("castle").."/tapestry.lua")