From 4a7e113cf56d0f0e87a2d9b905d6a7262e18a223 Mon Sep 17 00:00:00 2001 From: alex-gh Date: Tue, 13 May 2014 17:20:28 +0200 Subject: [PATCH] Pyro anomaly tweaks Pyro anomaly arrives much later after announcement, making it easier to disable. Pyro anomaly now produces more plasma. --- code/game/objects/effects/anomalies.dm | 2 +- code/modules/events/tgevents/anomaly_pyro.dm | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/code/game/objects/effects/anomalies.dm b/code/game/objects/effects/anomalies.dm index 4c2d0ae8fe0..e33f20435b7 100644 --- a/code/game/objects/effects/anomalies.dm +++ b/code/game/objects/effects/anomalies.dm @@ -119,7 +119,7 @@ var/turf/simulated/T = get_turf(src) if(istype(T)) var/datum/gas_mixture/payload = new - payload.toxins = 30 + payload.toxins = 60 T.zone.air.merge(payload) T.hotspot_expose(1000, CELL_VOLUME) // T.atmos_spawn_air("fire", 3) diff --git a/code/modules/events/tgevents/anomaly_pyro.dm b/code/modules/events/tgevents/anomaly_pyro.dm index 8829f7ab94b..51fcafe47ed 100644 --- a/code/modules/events/tgevents/anomaly_pyro.dm +++ b/code/modules/events/tgevents/anomaly_pyro.dm @@ -1,9 +1,9 @@ /datum/event/anomaly/anomaly_pyro - startWhen = 10 + startWhen = 30 announceWhen = 3 - endWhen = 70 + endWhen = 110 /datum/event/anomaly/anomaly_pyro/announce()