forked from Mirrorlandia_minetest/minetest
Grow dirt_with_snow instead of dirt_with_grass if snow is above it
This commit is contained in:
parent
4a9b8aae5e
commit
c03c296dc7
@ -51,10 +51,14 @@ public:
|
|||||||
ServerMap *map = &env->getServerMap();
|
ServerMap *map = &env->getServerMap();
|
||||||
|
|
||||||
MapNode n_top = map->getNodeNoEx(p+v3s16(0,1,0));
|
MapNode n_top = map->getNodeNoEx(p+v3s16(0,1,0));
|
||||||
|
content_t c_snow = ndef->getId("snow");
|
||||||
if(ndef->get(n_top).light_propagates &&
|
if(ndef->get(n_top).light_propagates &&
|
||||||
!ndef->get(n_top).isLiquid() &&
|
!ndef->get(n_top).isLiquid() &&
|
||||||
n_top.getLightBlend(env->getDayNightRatio(), ndef) >= 13)
|
n_top.getLightBlend(env->getDayNightRatio(), ndef) >= 13)
|
||||||
{
|
{
|
||||||
|
if(c_snow != CONTENT_IGNORE && n_top.getContent() == c_snow)
|
||||||
|
n.setContent(ndef->getId("dirt_with_snow"));
|
||||||
|
else
|
||||||
n.setContent(ndef->getId("mapgen_dirt_with_grass"));
|
n.setContent(ndef->getId("mapgen_dirt_with_grass"));
|
||||||
map->addNodeWithEvent(p, n);
|
map->addNodeWithEvent(p, n);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user