Make the Door Workshop more wooden. (Fuel + choppy)

Suggested by @Wuzzy2
hightime
Thomas--S 2016-10-31 19:22:04 +01:00
parent 547b276ae0
commit e88f55f05c
1 changed files with 7 additions and 1 deletions

View File

@ -599,7 +599,7 @@ minetest.register_node("ts_doors:workshop", {
drawtype = "nodebox",
paramtype = "light",
paramtype2 = "facedir",
groups = { cracky = 1 },
groups = { choppy = 2, oddly_breakable_by_hand = 2 },
node_box = {
type = "fixed",
fixed = {
@ -639,4 +639,10 @@ minetest.register_craft({
{ "default:wood", "doors:door_wood", "default:wood" },
{ "default:wood", "default:wood", "default:wood" },
}
})
minetest.register_craft({
type = "fuel",
recipe = "ts_doors:workshop",
burntime = 30,
})