diff options
author | Sokomine <wegwerf@anarres.dyndns.org> | 2016-08-17 23:53:33 +0200 |
---|---|---|
committer | Sokomine <wegwerf@anarres.dyndns.org> | 2016-08-17 23:53:33 +0200 |
commit | 1f0bc0e4bd6e20f4094708246c08d095d83dac62 (patch) | |
tree | af796e0ebd1c62e617858cdacba55214261e54b4 /nodes_historic.lua | |
parent | 00fd63ba140f7eca9ea73a2732948dac72c9f4fc (diff) |
added nice meshes from VanessaE, junction, t-junction and curve to dirt road
Diffstat (limited to 'nodes_historic.lua')
-rw-r--r-- | nodes_historic.lua | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/nodes_historic.lua b/nodes_historic.lua index 0a81d23..1fa5ea4 100644 --- a/nodes_historic.lua +++ b/nodes_historic.lua @@ -32,19 +32,6 @@ minetest.register_node("cottages:wagon_wheel", { }) --- a nice dirt road for small villages or paths to fields -minetest.register_node("cottages:feldweg", { - description = S("dirt road"), - tiles = {"cottages_feldweg.png","default_dirt.png", "default_dirt.png^default_grass_side.png"}, - paramtype2 = "facedir", - groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2}, - legacy_facedir_simple = true, - groups = {crumbly=3}, - sounds = default.node_sound_dirt_defaults, - is_ground_content = false, -}) - - -- people didn't use clay for houses; they did build with loam minetest.register_node("cottages:loam", { description = S("loam"), @@ -57,12 +44,6 @@ minetest.register_node("cottages:loam", { -- create stairs if possible if( minetest.get_modpath("stairs") and stairs and stairs.register_stair_and_slab) then - stairs.register_stair_and_slab("feldweg", "cottages:feldweg", - {snappy=2,choppy=2,oddly_breakable_by_hand=2}, - {"cottages_feldweg.png","default_dirt.png", "default_grass.png","default_grass.png","cottages_feldweg.png","cottages_feldweg.png"}, - S("Dirt Road Stairs"), - S("Dirt Road, half height"), - default.node_sound_dirt_defaults()) stairs.register_stair_and_slab("loam", "cottages:loam", {snappy=2,choppy=2,oddly_breakable_by_hand=2}, |