From 534d4657d2fb56317d5f9fe4ef9d113537a95039 Mon Sep 17 00:00:00 2001 From: Aronai Sieyes Date: Mon, 20 Apr 2020 17:27:24 -0400 Subject: [PATCH] Make it behave the same as water in regards to xenobio --- code/modules/reagents/Chemistry-Reagents_vr.dm | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/code/modules/reagents/Chemistry-Reagents_vr.dm b/code/modules/reagents/Chemistry-Reagents_vr.dm index c6ea7cc1dcd..58a9b19402d 100644 --- a/code/modules/reagents/Chemistry-Reagents_vr.dm +++ b/code/modules/reagents/Chemistry-Reagents_vr.dm @@ -91,5 +91,10 @@ O.water_act(reac_volume / 5) /datum/reagent/firefighting_foam/touch_mob(var/mob/living/M, reac_volume) + if(istype(M, /mob/living/simple_mob/slime)) //I'm sure foam is water-based! + var/mob/living/simple_mob/slime/S = M + S.adjustToxLoss(15 * reac_volume) + S.visible_message("[S]'s flesh sizzles where the foam touches it!", "Your flesh burns in the foam!") + M.adjust_fire_stacks(-reac_volume) - M.ExtinguishMob() \ No newline at end of file + M.ExtinguishMob()