Fixed issue where ChunkPriderEvent.InitNoiseField used the wrong sizeY value.
This commit is contained in:
parent
9fe0b4dfba
commit
c96b923e1c
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue