1
0
mirror of https://github.com/minetest/minetest_game.git synced 2025-06-30 05:40:24 +02:00

Default: Allow papyrus growing on default:sand

Mgv5/mgv7 papyrus schematic now has sand nodes as a base
Add sand beach to mgv5/mgv7 deserts
This commit is contained in:
paramat
2015-08-29 23:58:39 +01:00
parent 908d8e5f90
commit 4d9b595a69
3 changed files with 8 additions and 7 deletions

View File

@ -152,7 +152,8 @@ end
function default.grow_papyrus(pos, node)
pos.y = pos.y - 1
local name = minetest.get_node(pos).name
if name ~= "default:dirt_with_grass" and name ~= "default:dirt" then
if name ~= "default:dirt_with_grass" and name ~= "default:dirt" and
name ~= "default:sand" then
return
end
if not minetest.find_node_near(pos, 3, {"group:water"}) then
@ -184,7 +185,7 @@ minetest.register_abm({
minetest.register_abm({
nodenames = {"default:papyrus"},
neighbors = {"default:dirt", "default:dirt_with_grass"},
neighbors = {"default:dirt", "default:dirt_with_grass", "default:sand"},
interval = 50,
chance = 20,
action = function(...)