From 2da74f95c0dab0f517947005819388d5405d302e Mon Sep 17 00:00:00 2001 From: Jordan Dominion Date: Tue, 2 Dec 2025 01:00:19 -0500 Subject: [PATCH] Hygienebot extinguishes you (#94253) ## About The Pull Request Hygiene bots now extinguish mobs when they wash them. ## Why It's Good For The Game You're being doused with a liquid, how is your cigarette still burning? ## Changelog :cl: add: Hygiene bots now extinguish when cleaning. /:cl: Co-authored-by: Jordan Dominion --- code/modules/mob/living/basic/bots/hygienebot/hygienebot.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/mob/living/basic/bots/hygienebot/hygienebot.dm b/code/modules/mob/living/basic/bots/hygienebot/hygienebot.dm index 80e1ce7b63b..e7077d30c16 100644 --- a/code/modules/mob/living/basic/bots/hygienebot/hygienebot.dm +++ b/code/modules/mob/living/basic/bots/hygienebot/hygienebot.dm @@ -115,6 +115,7 @@ target.fire_act() return target.wash(CLEAN_WASH) + target.extinguish() /mob/living/basic/bot/hygienebot/on_bot_movement(atom/movable/source, atom/oldloc, dir, forced)