From e71e35e89c597af2f5783d8274f005f1632cf9e7 Mon Sep 17 00:00:00 2001 From: oranges Date: Thu, 23 Dec 2021 09:56:35 +1300 Subject: [PATCH] Mops no longer wet the turf when you refill them from the mop bucket (#63549) --- 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 8da8e8c69ce..1e1bfb54265 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()