1
0
mirror of https://codeberg.org/tenplus1/farming.git synced 2025-02-07 14:20:21 +01:00

hoe bomb's replace dry dirt

This commit is contained in:
tenplus1 2025-01-12 11:40:28 +00:00
parent ae10efceff
commit e247a3ea13

View File

@ -254,7 +254,7 @@ local function hoe_area(pos, player)
res = minetest.find_nodes_in_area_under_air(
{x = pos.x - r, y = pos.y - 1, z = pos.z - r},
{x = pos.x + r, y = pos.y + 2, z = pos.z + r},
{"group:soil"})
{"group:soil", "ethereal:dry_dirt"})
for n = 1, #res do
minetest.swap_node(res[n], {name = "farming:soil"})