From 63b9a13124fe23a18fb61d3768684f1a16bb68ea Mon Sep 17 00:00:00 2001 From: Teletubby2 Date: Sat, 25 Jul 2020 21:42:49 -0300 Subject: [PATCH] Makes sterilizine actually do something worthwhile. Hnnnnnnng. if floor code wasn't ass I'd give this it's own overlay, but it's fine. probably. the reason I'm not throwing this at Polaris is because I can't be assed forking them with my junky, canadian internet. --- .../Chemistry-Reagents/Chemistry-Reagents-Medicine.dm | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Medicine.dm b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Medicine.dm index 5a323e01c63..2734351bf9a 100644 --- a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Medicine.dm +++ b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Medicine.dm @@ -1197,6 +1197,12 @@ for(var/obj/effect/decal/cleanable/blood/B in T) qdel(B) + //VOREstation edit. Floor polishing. + if(istype(T, /turf/simulated)) + var/turf/simulated/S = T + S.dirt = -150 + //VOREstation edit end + /datum/reagent/sterilizine/touch_mob(var/mob/living/L, var/amount) if(istype(L)) if(istype(L, /mob/living/simple_mob/slime))