From a5f39d1cb8268db357ee755a2eacc59d8acf8167 Mon Sep 17 00:00:00 2001 From: Remie Richards Date: Sun, 3 May 2015 23:39:04 +0100 Subject: [PATCH] minor correction. --- code/modules/procedural mapping/mapGenerator.dm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/code/modules/procedural mapping/mapGenerator.dm b/code/modules/procedural mapping/mapGenerator.dm index 007e2d431bf..864e43c1ea6 100644 --- a/code/modules/procedural mapping/mapGenerator.dm +++ b/code/modules/procedural mapping/mapGenerator.dm @@ -70,8 +70,7 @@ for(var/i = lilZ, i <= bigZ+offByOneOffset, i++) var/theRadius = radius if(i != sphereMagic) - if(i != evenCheckZ) - theRadius = max(radius/max((2*abs(sphereMagic-i)),1),1) + theRadius = max(radius/max((2*abs(sphereMagic-i)),1),1) map |= circlerange(locate(centerX,centerY,i),theRadius)