Merge pull request #2543 from hea3ven/6.4.x
fix planters not working with zone planner areas
This commit is contained in:
commit
c0dee8dd29
1 changed files with 2 additions and 1 deletions
|
@ -103,8 +103,9 @@ public class ZoneChunk implements ISerializable {
|
|||
z = bitPosition / 16;
|
||||
x = bitPosition - 16 * z;
|
||||
}
|
||||
int y = rand.nextInt(255);
|
||||
|
||||
return new BlockIndex(x, 0, z);
|
||||
return new BlockIndex(x, y, z);
|
||||
}
|
||||
|
||||
public boolean isEmpty() {
|
||||
|
|
Loading…
Reference in a new issue