mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2025-07-22 15:24:43 +02:00
Fix min -> max
This commit is contained in:
@ -506,7 +506,7 @@ public abstract class QueueCoordinator {
|
|||||||
* Get the max chunk layer associated with the queue. Usually 15 or 19
|
* Get the max chunk layer associated with the queue. Usually 15 or 19
|
||||||
*/
|
*/
|
||||||
protected int getMaxLayer() {
|
protected int getMaxLayer() {
|
||||||
return (getWorld() != null ? getWorld().getMinY() : PlotSquared.platform().versionMaxHeight()) >> 4;
|
return (getWorld() != null ? getWorld().getMaxY() : PlotSquared.platform().versionMaxHeight()) >> 4;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user