1
0
mirror of https://codeberg.org/tenplus1/farming.git synced 2025-07-13 13:50:29 +02:00

add pumpkin bottom texture, redo melon node, fix typo in scythe, make pumpkin/melon rotatable

This commit is contained in:
tenplus1
2021-06-09 07:41:11 +01:00
parent dc392e8adc
commit 70803f8aef
4 changed files with 21 additions and 19 deletions

View File

@ -183,7 +183,7 @@ minetest.register_node("farming:pumpkin_8", {
description = S("Pumpkin"),
tiles = {
"farming_pumpkin_top.png",
"farming_pumpkin_top.png",
"farming_pumpkin_bottom.png",
"farming_pumpkin_side.png"
},
groups = {
@ -191,7 +191,9 @@ minetest.register_node("farming:pumpkin_8", {
flammable = 2, plant = 1
},
drop = "farming:pumpkin_8",
sounds = default.node_sound_wood_defaults()
sounds = default.node_sound_wood_defaults(),
paramtype2 = "facedir",
on_place = minetest.rotate_node
})
minetest.register_alias("farming:pumpkin", "farming:pumpkin_8")