scaffolding-node is now cheaper and visually larger

master
Sokomine 2016-12-26 23:26:31 +01:00
parent a057a4328e
commit a412916d91
1 changed files with 3 additions and 2 deletions

View File

@ -9,6 +9,7 @@ minetest.register_node("handle_schematics:support", {
description = "support structure for buildings",
tiles = {"handle_schematics_support.png"},
groups = {snappy=3,choppy=3,oddly_breakable_by_hand=3},
visual_scale = 1.2,
walkable = false,
climbable = true,
paramtype = "light",
@ -17,8 +18,8 @@ minetest.register_node("handle_schematics:support", {
minetest.register_craft({
output = "handle_schematics:support",
output = "handle_schematics:support 4",
recipe = {
{"default:stick", "", "default:stick", }
{"group:stick", "", "group:stick" }
}
})