diff options
author | h-v-smacker <hans-von-smacker+github@gmail.com> | 2018-08-29 14:09:45 +0300 |
---|---|---|
committer | h-v-smacker <hans-von-smacker+github@gmail.com> | 2018-08-29 14:09:45 +0300 |
commit | 9a81477bde153422d40a9f576ab5e628568b16ab (patch) | |
tree | 7856d4a959981e48198717d688588c9873b00dd0 /nodes_mining.lua | |
parent | 5da141f625ec9143a6349dc259d7126da205824d (diff) |
more microblocks compatibility
Diffstat (limited to 'nodes_mining.lua')
-rw-r--r-- | nodes_mining.lua | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/nodes_mining.lua b/nodes_mining.lua index 8607b61..094fa21 100644 --- a/nodes_mining.lua +++ b/nodes_mining.lua @@ -43,8 +43,8 @@ minetest.register_node("cottages:ladder_with_rope_and_rail", { description = S("Ladder with rail support"), drawtype = "signlike", tiles = {"default_ladder_wood.png^carts_rail_straight.png^cottages_rope.png"}, - inventory_image = "default_ladder_wood.png", - wield_image = "default_ladder_wood.png", + inventory_image = "default_ladder_wood.png^carts_rail_straight.png^cottages_rope.png", + wield_image = "default_ladder_wood.png^carts_rail_straight.png^cottages_rope.png", paramtype = "light", paramtype2 = "wallmounted", sunlight_propagates = true, @@ -54,7 +54,8 @@ minetest.register_node("cottages:ladder_with_rope_and_rail", { selection_box = { type = "wallmounted", }, - groups = {choppy=2,oddly_breakable_by_hand=3,rail=1,connect_to_raillike=1}, --connect_to_raillike=minetest.raillike_group("rail")}, +-- groups = {choppy=2,oddly_breakable_by_hand=3,rail=1,connect_to_raillike=1}, --connect_to_raillike=minetest.raillike_group("rail")}, + groups = {choppy=2,oddly_breakable_by_hand=3,rail=1,connect_to_raillike=minetest.raillike_group("rail")}, legacy_wallmounted = true, sounds = default.node_sound_wood_defaults, }) |