Fix incorrect DhApiChunk create constructor parameter order (again)

This commit is contained in:
James Seibel
2024-07-28 20:18:15 -05:00
parent 9546f9cbc8
commit e0ad956e34
@@ -66,7 +66,7 @@ public class DhApiChunk
* @since API 3.0.0
*/
public static DhApiChunk create(int chunkPosX, int chunkPosZ, int bottomYBlockPos, int topYBlockPos)
{ return new DhApiChunk(chunkPosX, chunkPosZ, topYBlockPos, bottomYBlockPos, false); }
{ return new DhApiChunk(chunkPosX, chunkPosZ, bottomYBlockPos, topYBlockPos, false); }
/**
* Only visible to internal DH methods