mirror of
				https://github.com/IntellectualSites/PlotSquared.git
				synced 2025-11-04 11:13:45 +01:00 
			
		
		
		
	Improve plot getVolume method readability
This commit is contained in:
		@@ -1619,9 +1619,8 @@ public class Plot {
 | 
			
		||||
    public double getVolume() {
 | 
			
		||||
        double count = 0;
 | 
			
		||||
        for (CuboidRegion region : getRegions()) {
 | 
			
		||||
            count += (region.getMaximumPoint().getX() - (double) region.getMinimumPoint().getX() + 1) *
 | 
			
		||||
                    (region.getMaximumPoint().getZ() - (double) region.getMinimumPoint().getZ() + 1) *
 | 
			
		||||
                    (area.getMaxGenHeight() - area.getMinGenHeight() + 1);
 | 
			
		||||
            // CuboidRegion#getArea is deprecated and we want to ensure use of correct height
 | 
			
		||||
            count += region.getLength() * region.getWidth() * (area.getMaxGenHeight() - area.getMinGenHeight() + 1);
 | 
			
		||||
        }
 | 
			
		||||
        return count;
 | 
			
		||||
    }
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user