Removes free roundstart RCDs, adds foam grenades to EVA (#48482)

* RCD is premium, EVA RCD replaced with foam grenades, foam better

* vendor stock down to 2
This commit is contained in:
skoglol
2020-01-05 19:35:03 -05:00
committed by moo
parent fc8297a575
commit 36437d9c33
10 changed files with 100 additions and 50 deletions
@@ -172,7 +172,7 @@
/obj/effect/particle_effect/foam/proc/spread_foam()
var/turf/t_loc = get_turf(src)
for(var/turf/T in t_loc.GetAtmosAdjacentTurfs())
for(var/turf/T in t_loc.reachableAdjacentTurfs())
var/obj/effect/particle_effect/foam/foundfoam = locate() in T //Don't spread foam where there's already foam!
if(foundfoam)
continue
@@ -238,7 +238,7 @@
amount = round(sqrt(amt / 2), 1)
carry.copy_to(chemholder, carry.total_volume)
if(metaltype != 0)
if(metaltype)
metal = metaltype
/datum/effect_system/foam_spread/start()