From bdd5e224e4366c2bddc58fc7c00d1b9f6ce83b7c Mon Sep 17 00:00:00 2001 From: CHOMPStation2StaffMirrorBot <94713762+CHOMPStation2StaffMirrorBot@users.noreply.github.com> Date: Tue, 3 Jun 2025 00:32:00 -0700 Subject: [PATCH] [MIRROR] Fixes showers not showering (#11000) Co-authored-by: Guti <32563288+TheCaramelion@users.noreply.github.com> --- code/game/objects/structures/watercloset.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/objects/structures/watercloset.dm b/code/game/objects/structures/watercloset.dm index c4f76a71b4..0522801e8b 100644 --- a/code/game/objects/structures/watercloset.dm +++ b/code/game/objects/structures/watercloset.dm @@ -191,7 +191,7 @@ if(on) soundloop.start() if (M.loc == loc) - wash(M) + do_wash(M) process_heat(M) for (var/atom/movable/G in src.loc) G.wash(CLEAN_SCRUB) @@ -262,7 +262,7 @@ var/remove_amount = M.touching.maximum_volume * M.reagent_permeability() //take off your suit first M.touching.remove_any(remove_amount) - M.wash(CLEAN_SCRUB) + O.wash(CLEAN_SCRUB) reagents.splash(O, 10, min_spill = 0, max_spill = 0)