summaryrefslogtreecommitdiff
path: root/nodes_fences.lua
diff options
context:
space:
mode:
authorh-v-smacker <hans-von-smacker+github@gmail.com>2018-08-29 14:09:45 +0300
committerh-v-smacker <hans-von-smacker+github@gmail.com>2018-08-29 14:09:45 +0300
commit9a81477bde153422d40a9f576ab5e628568b16ab (patch)
tree7856d4a959981e48198717d688588c9873b00dd0 /nodes_fences.lua
parent5da141f625ec9143a6349dc259d7126da205824d (diff)
more microblocks compatibility
Diffstat (limited to 'nodes_fences.lua')
-rw-r--r--nodes_fences.lua8
1 files changed, 4 insertions, 4 deletions
diff --git a/nodes_fences.lua b/nodes_fences.lua
index c912f2a..50ad9de 100644
--- a/nodes_fences.lua
+++ b/nodes_fences.lua
@@ -110,7 +110,7 @@ minetest.register_node("cottages:fence_end", {
})
minetest.register_craft({
- output = "cottages:fence_small 3",
+ output = "cottages:fence_small 4",
recipe = {
{cottages.craftitem_fence, cottages.craftitem_fence},
}
@@ -121,7 +121,7 @@ if ( minetest.get_modpath("xfences") ~= nil ) then
minetest.register_craft({
output = "cottages:fence_small 3",
recipe = {
- {"xfences:fence","xfences:fence" },
+ {"xfences:fence", "xfences:fence" },
}
})
end
@@ -129,7 +129,7 @@ end
minetest.register_craft({
output = "cottages:fence_corner",
recipe = {
- {"cottages:fence_small","cottages:fence_small" },
+ {"cottages:fence_small", "cottages:fence_small" },
}
})
@@ -143,7 +143,7 @@ minetest.register_craft({
minetest.register_craft({
output = "cottages:fence_end",
recipe = {
- {"cottages:fence_small","cottages:fence_small", "cottages:fence_small" },
+ {"cottages:fence_small", "cottages:fence_small", "cottages:fence_small" },
}
})