summaryrefslogtreecommitdiff
path: root/src/mg_decoration.cpp
diff options
context:
space:
mode:
authorparamat <mat.gregory@virginmedia.com>2016-08-03 03:44:33 +0100
committerparamat <mat.gregory@virginmedia.com>2016-08-05 11:48:40 +0100
commitb6d845adb4a0f39a58610c827817b1f881bfcebc (patch)
treef25424e4fd8960e1500aee60ebeec16bf926e175 /src/mg_decoration.cpp
parentea12da939fdb0a8fd13de885d104af3031ffc3ac (diff)
downloadminetest-b6d845adb4a0f39a58610c827817b1f881bfcebc.tar.gz
minetest-b6d845adb4a0f39a58610c827817b1f881bfcebc.tar.bz2
minetest-b6d845adb4a0f39a58610c827817b1f881bfcebc.zip
Decorations: Fix decoration height check errors
Fix height check comparison from '>=' to '>'. Fix getHeight() for schematic decorations to account for 'deco place center y' flag and for how normal placement sinks schematic 1 node into the ground. Jungletrees were not being placed at y = 46, y = 47 despite having an acceptable 16 nodes of height above ground surface.
Diffstat (limited to 'src/mg_decoration.cpp')
-rw-r--r--src/mg_decoration.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/mg_decoration.cpp b/src/mg_decoration.cpp
index 8b6abb5d5..70dd9817a 100644
--- a/src/mg_decoration.cpp
+++ b/src/mg_decoration.cpp
@@ -145,7 +145,7 @@ size_t Decoration::placeDeco(Mapgen *mg, u32 blockseed, v3s16 nmin, v3s16 nmax)
y < y_min || y > y_max)
continue;
- if (y + getHeight() >= mg->vm->m_area.MaxEdge.Y) {
+ if (y + getHeight() > mg->vm->m_area.MaxEdge.Y) {
continue;
#if 0
printf("Decoration at (%d %d %d) cut off\n", x, y, z);
@@ -370,5 +370,9 @@ size_t DecoSchematic::generate(MMVManip *vm, PcgRandom *pr, v3s16 p)
int DecoSchematic::getHeight()
{
- return schematic->size.Y;
+ // Account for a schematic being sunk into the ground by flag.
+ // When placed normally account for how a schematic is placed
+ // sunk 1 node into the ground.
+ return (flags & DECO_PLACE_CENTER_Y) ?
+ (schematic->size.Y - 1) / 2 : schematic->size.Y - 1;
}