From 522e4cff5fc7bfbaa27e4a509ea05df0bc0dcf02 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Thu, 23 Dec 2021 02:31:42 +0100 Subject: [PATCH] [MIRROR] Mops no longer wet the turf when you refill them from the mop bucket [MDB IGNORE] (#10199) * Mops no longer wet the turf when you refill them from the mop bucket (#63549) * Mops no longer wet the turf when you refill them from the mop bucket Co-authored-by: oranges --- code/game/objects/structures/mop_bucket.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/game/objects/structures/mop_bucket.dm b/code/game/objects/structures/mop_bucket.dm index 0317349f165..08a5eb6fee2 100644 --- a/code/game/objects/structures/mop_bucket.dm +++ b/code/game/objects/structures/mop_bucket.dm @@ -20,6 +20,7 @@ to_chat(user, span_notice("You wet [I] in [src].")) playsound(loc, 'sound/effects/slosh.ogg', 25, TRUE) update_appearance() + return TRUE //Stop the click handling chain so the mop after attack doesn't proc and you don't wet the turf the bucket is on else . = ..() update_appearance()