summaryrefslogtreecommitdiff
path: root/ropes/ladder.lua
diff options
context:
space:
mode:
authorVanessa Dannenberg <vanessa.e.dannenberg@gmail.com>2018-08-22 22:28:28 -0400
committerVanessa Dannenberg <vanessa.e.dannenberg@gmail.com>2018-08-22 22:28:28 -0400
commit9c9457e1f50ebdd943695a4cce6b88fa552370f3 (patch)
tree4f6002b266179e0dd1639affffd4f09a18dfcad5 /ropes/ladder.lua
parent3c47f229fcbdb7cad28bacbc579516bf3ecf6c03 (diff)
downloaddreambuilder_modpack-9c9457e1f50ebdd943695a4cce6b88fa552370f3.tar
dreambuilder_modpack-9c9457e1f50ebdd943695a4cce6b88fa552370f3.tar.gz
dreambuilder_modpack-9c9457e1f50ebdd943695a4cce6b88fa552370f3.tar.bz2
dreambuilder_modpack-9c9457e1f50ebdd943695a4cce6b88fa552370f3.tar.xz
dreambuilder_modpack-9c9457e1f50ebdd943695a4cce6b88fa552370f3.zip
update castles modpack, blox, bobblocks, coloredwood, technic,
gloopblocks, homedecor, ilights, led marquee, plasticbox, solidcolor, stained_glass, unified bricks, and unified dyes In most of these, the update is to shift over to the new "old" coloring paradigm in Unified Dyes. See its forum thread for details.
Diffstat (limited to 'ropes/ladder.lua')
-rw-r--r--ropes/ladder.lua11
1 files changed, 0 insertions, 11 deletions
diff --git a/ropes/ladder.lua b/ropes/ladder.lua
index 7097c72..5ac872c 100644
--- a/ropes/ladder.lua
+++ b/ropes/ladder.lua
@@ -46,17 +46,6 @@ local rope_ladder_top_def = {
},
groups = { choppy=2, oddly_breakable_by_hand=1,flammable=2},
sounds = default.node_sound_wood_defaults(),
-
- on_place = function(itemstack, placer, pointed_thing)
- if pointed_thing.type == "node" then
- local target_node = minetest.get_node(pointed_thing.under)
- local target_def = minetest.registered_nodes[target_node.name]
- if target_def.walkable == false then
- return itemstack
- end
- end
- return minetest.item_place(itemstack, placer, pointed_thing)
- end,
after_place_node = function(pos, placer)
local pos_below = {x=pos.x, y=pos.y-1, z=pos.z}