Fixed issue where ChunkPriderEvent.InitNoiseField used the wrong sizeY value.

This commit is contained in:
LexManos 2013-01-01 20:55:37 -08:00
parent 9fe0b4dfba
commit c96b923e1c
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ public class ChunkProviderEvent extends Event
this.posY = posY;
this.posZ = posZ;
this.sizeX = sizeX;
this.sizeY = sizeX;
this.sizeY = sizeY;
this.sizeZ = sizeZ;
}