summaryrefslogtreecommitdiff
path: root/cottages/nodes_historic.lua
diff options
context:
space:
mode:
Diffstat (limited to 'cottages/nodes_historic.lua')
-rw-r--r--cottages/nodes_historic.lua19
1 files changed, 0 insertions, 19 deletions
diff --git a/cottages/nodes_historic.lua b/cottages/nodes_historic.lua
index 0a81d23..1fa5ea4 100644
--- a/cottages/nodes_historic.lua
+++ b/cottages/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},