Adds cult,clockworck and massdelete generators to buildmode

This commit is contained in:
AnturK
2016-08-04 21:02:40 +02:00
parent a2b80f7f52
commit 24187e7633
3 changed files with 47 additions and 1 deletions
@@ -17,6 +17,17 @@
T.air.copy_from_turf(T)
SSair.add_to_active(T)
/datum/mapGeneratorModule/bottomLayer/massdelete
spawnableAtoms = list()
spawnableTurfs = list()
/datum/mapGeneratorModule/bottomLayer/massdelete/generate()
if(!mother)
return
for(var/V in mother.map)
var/turf/T = V
T.empty()
//Only places atoms/turfs on area borders
/datum/mapGeneratorModule/border
clusterCheckFlags = CLUSTER_CHECK_NONE
@@ -37,4 +48,7 @@
return 0
/datum/mapGenerator/repressurize
modules = list(/datum/mapGeneratorModule/bottomLayer/repressurize)
modules = list(/datum/mapGeneratorModule/bottomLayer/repressurize)
/datum/mapGenerator/massdelete
modules = list(/datum/mapGeneratorModule/bottomLayer/massdelete)