Skip to content

Commit

Permalink
Removes 2 commented out lines.
Browse files Browse the repository at this point in the history
  • Loading branch information
RemieRichards committed Feb 15, 2015
1 parent 4bebfae commit 9402d8c
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions code/modules/procedural mapping/mapGeneratorModule.dm
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@
if(clusterCheckFlags & CLUSTER_CHECK_TURFS)
if(clusterMax && clusterMin)
clustering = rand(clusterMin,clusterMax)
//if(locate(turfPath) in range(clustering,T))
if(locate(/atom/movable) in range(clustering, T))
continue
if(prob(spawnableTurfs[turfPath]))
Expand All @@ -53,7 +52,6 @@
if(clusterCheckFlags & CLUSTER_CHECK_ATOMS)
if(clusterMax && clusterMin)
clustering = rand(clusterMin,clusterMax)
//if(locate(atomPath) in range(clustering,T))
if(locate(/atom/movable) in range(clustering, T))
continue
if(prob(spawnableAtoms[atomPath]))
Expand Down

0 comments on commit 9402d8c

Please sign in to comment.