1
0

Add "a_RelY < cChunkDef::Height" to BlockBigFlower

This commit is contained in:
Howaner 2014-03-29 13:11:49 +01:00
parent a78bacac3c
commit 736c7950a2

View File

@ -84,6 +84,7 @@ public:
return (
a_RelY > 0
&& a_Chunk.GetBlock(a_RelX, a_RelY - 1, a_RelZ) != E_BLOCK_AIR
&& a_RelY < cChunkDef::Height
);
}