mirror of
https://codeberg.org/tenplus1/farming.git
synced 2024-12-27 19:20:20 +01:00
fix scythe harvest of beanpoles and grapes
This commit is contained in:
parent
58c236532d
commit
99a729e488
@ -191,7 +191,7 @@ local crop_def = {
|
|||||||
selection_box = farming.select,
|
selection_box = farming.select,
|
||||||
groups = {
|
groups = {
|
||||||
snappy = 3, flammable = 3, not_in_creative_inventory = 1,
|
snappy = 3, flammable = 3, not_in_creative_inventory = 1,
|
||||||
attached_node = 1, growing = 1
|
attached_node = 1, growing = 1, plant = 1
|
||||||
},
|
},
|
||||||
sounds = default.node_sound_leaves_defaults()
|
sounds = default.node_sound_leaves_defaults()
|
||||||
}
|
}
|
||||||
|
@ -186,7 +186,7 @@ local crop_def = {
|
|||||||
selection_box = farming.select,
|
selection_box = farming.select,
|
||||||
groups = {
|
groups = {
|
||||||
snappy = 3, flammable = 3, not_in_creative_inventory = 1,
|
snappy = 3, flammable = 3, not_in_creative_inventory = 1,
|
||||||
attached_node = 1, growing = 1
|
attached_node = 1, growing = 1, plant = 1
|
||||||
},
|
},
|
||||||
sounds = default.node_sound_leaves_defaults()
|
sounds = default.node_sound_leaves_defaults()
|
||||||
}
|
}
|
||||||
|
18
hoes.lua
18
hoes.lua
@ -402,15 +402,19 @@ minetest.register_tool("farming:scythe_mithril", {
|
|||||||
-- add dropped items
|
-- add dropped items
|
||||||
for _, dropped_item in pairs(drops) do
|
for _, dropped_item in pairs(drops) do
|
||||||
|
|
||||||
local obj = minetest.add_item(pos, dropped_item)
|
if dropped_item ~= "farming:trellis"
|
||||||
|
and dropped_item ~= "farming:beanpole" then
|
||||||
|
|
||||||
if obj then
|
local obj = minetest.add_item(pos, dropped_item)
|
||||||
|
|
||||||
obj:set_velocity({
|
if obj then
|
||||||
x = math.random(-10, 10) / 9,
|
|
||||||
y = 3,
|
obj:set_velocity({
|
||||||
z = math.random(-10, 10) / 9,
|
x = math.random(-10, 10) / 9,
|
||||||
})
|
y = 3,
|
||||||
|
z = math.random(-10, 10) / 9,
|
||||||
|
})
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user