From 63b9a13124fe23a18fb61d3768684f1a16bb68ea Mon Sep 17 00:00:00 2001 From: Teletubby2 Date: Sat, 25 Jul 2020 21:42:49 -0300 Subject: [PATCH 1/2] 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)) From 3a367e20fb88328ab88b1c1bfa040bf1e11f2063 Mon Sep 17 00:00:00 2001 From: Teletubby2 Date: Wed, 29 Jul 2020 15:07:00 -0300 Subject: [PATCH 2/2] More reasonable value. 200 steps to see dirt again is a bit excessive. --- .../reagents/Chemistry-Reagents/Chemistry-Reagents-Medicine.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Medicine.dm b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Medicine.dm index 2734351bf9a..75beeac7012 100644 --- a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Medicine.dm +++ b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Medicine.dm @@ -1200,7 +1200,7 @@ //VOREstation edit. Floor polishing. if(istype(T, /turf/simulated)) var/turf/simulated/S = T - S.dirt = -150 + S.dirt = -50 //VOREstation edit end /datum/reagent/sterilizine/touch_mob(var/mob/living/L, var/amount)