diff --git a/code/game/objects/effects/anomalies.dm b/code/game/objects/effects/anomalies.dm index 458633001ca..843bf4411b8 100644 --- a/code/game/objects/effects/anomalies.dm +++ b/code/game/objects/effects/anomalies.dm @@ -172,7 +172,7 @@ ..() var/turf/open/T = get_turf(src) if(istype(T)) - T.atmos_spawn_air("o2=15;plasma=15;TEMP=1000") + T.atmos_spawn_air("o2=5;plasma=5;TEMP=1000") ///////////////////// diff --git a/code/modules/events/anomaly_pyro.dm b/code/modules/events/anomaly_pyro.dm index 1f1b63c9fa3..751089d434d 100644 --- a/code/modules/events/anomaly_pyro.dm +++ b/code/modules/events/anomaly_pyro.dm @@ -30,10 +30,10 @@ if(newAnomaly.loc) var/turf/open/T = get_turf(newAnomaly) if(istype(T)) - T.atmos_spawn_air("o2=200;plasma=200;TEMP=1000") //Make it hot and burny for the new slime + T.atmos_spawn_air("o2=500;plasma=500;TEMP=1000") //Make it hot and burny for the new slime var/mob/living/simple_animal/slime/S = new/mob/living/simple_animal/slime(T) S.colour = pick("red", "orange") S.rabid = 1 - qdel(newAnomaly) \ No newline at end of file + qdel(newAnomaly)