From a428bd2b70dde0aaa1767473d4f37bcf0d1728c3 Mon Sep 17 00:00:00 2001 From: Casper3667 <8396443+Casper3667@users.noreply.github.com> Date: Thu, 30 Oct 2025 18:39:23 +0100 Subject: [PATCH] Fixes rags being unable to clean bowls (#21518) Before, trying to clean a bowl with a rag would fill it with water, preventing it from being cleaned. This stops the water from being moved to the bowl. --- code/modules/cooking/plates.dm | 2 +- html/changelogs/RagFix.yml | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 html/changelogs/RagFix.yml diff --git a/code/modules/cooking/plates.dm b/code/modules/cooking/plates.dm index 9d758ff492e..af863192640 100644 --- a/code/modules/cooking/plates.dm +++ b/code/modules/cooking/plates.dm @@ -84,7 +84,7 @@ Plates that can hold your cooking stuff return /obj/item/reagent_containers/bowl/on_rag_wipe(obj/item/reagent_containers/glass/rag/R) - . = ..() + clean_blood() if(grease) grease = FALSE update_icon() diff --git a/html/changelogs/RagFix.yml b/html/changelogs/RagFix.yml new file mode 100644 index 00000000000..0cf1709e264 --- /dev/null +++ b/html/changelogs/RagFix.yml @@ -0,0 +1,6 @@ +author: TheGreyWolf + +delete-after: True + +changes: + - bugfix: "Rags can now clean bowls properly."