From a410fb226636e80f887d68116211c2fb91984fc8 Mon Sep 17 00:00:00 2001 From: DeltaFire Date: Sat, 10 Jun 2023 08:12:13 +0200 Subject: [PATCH 1/2] shower buff removes the lower bound from shower contam removal to prevent VERY persistent 18 contam leftovers. Why is the contamination minimum 1 since 3 years anyways? Oh well, not my problem! --- code/game/objects/structures/shower.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/structures/shower.dm b/code/game/objects/structures/shower.dm index 80edee29c95..6d859d9f8b8 100644 --- a/code/game/objects/structures/shower.dm +++ b/code/game/objects/structures/shower.dm @@ -241,7 +241,7 @@ if(strength <= RAD_BACKGROUND_RADIATION) qdel(healthy_green_glow) return - healthy_green_glow.strength -= max(0, (healthy_green_glow.strength - (RAD_BACKGROUND_RADIATION * 2)) * 0.2) + healthy_green_glow.strength -= max(0, healthy_green_glow.strength * 0.2) /obj/machinery/shower/process() if(on) From 2a2e5c498a8f3fc6f94c7ea4b29b78799d0c1de1 Mon Sep 17 00:00:00 2001 From: DeltaFire <46569814+DeltaFire15@users.noreply.github.com> Date: Sat, 8 Jul 2023 22:49:08 +0200 Subject: [PATCH 2/2] nsv13 comment --- code/game/objects/structures/shower.dm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/code/game/objects/structures/shower.dm b/code/game/objects/structures/shower.dm index 6d859d9f8b8..2f330218054 100644 --- a/code/game/objects/structures/shower.dm +++ b/code/game/objects/structures/shower.dm @@ -241,8 +241,7 @@ if(strength <= RAD_BACKGROUND_RADIATION) qdel(healthy_green_glow) return - healthy_green_glow.strength -= max(0, healthy_green_glow.strength * 0.2) - + healthy_green_glow.strength -= max(0, healthy_green_glow.strength * 0.2) //NSV13 - Now removes rads towards 0, instead of towards (background radiation * 2). /obj/machinery/shower/process() if(on) wash_atom(loc)