This commit is contained in:
LetterN
2021-03-31 08:58:36 +08:00
parent a94e319acf
commit e950bfcbe4

View File

@@ -65,7 +65,7 @@ SUBSYSTEM_DEF(activity)
if(!("explosions" in deferred_threats))
deferred_threats["explosions"] = 0
var/area/A = get_area(epicenter)
if(is_station_level(epicenter.z) && (area_flags & BLOBS_ALLOWED) && !istype(A, /area/asteroid))
if(is_station_level(epicenter.z) && (A.area_flags & BLOBS_ALLOWED) && !istype(A, /area/asteroid))
deferred_threats["explosions"] += devastation_range**2 + heavy_impact_range**2 / 4 + light_impact_range**2 / 8 // 75 for a maxcap
/datum/controller/subsystem/activity/proc/on_death(mob/M, gibbed)