mirror of
				https://github.com/IntellectualSites/PlotSquared.git
				synced 2025-11-04 11:13:45 +01: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
 | 
			
		||||
     */
 | 
			
		||||
    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