From 8dc01209469918fb8da4c6ecb54656d4a04acef9 Mon Sep 17 00:00:00 2001
From: CRUNCH <143041327+Fordoxia@users.noreply.github.com>
Date: Wed, 27 Mar 2024 05:53:03 +0000
Subject: [PATCH] Rags can clean kitchen machines just like real life (#24748)
---
.../food_and_drinks/kitchen_machinery/kitchen_machine.dm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/code/modules/food_and_drinks/kitchen_machinery/kitchen_machine.dm b/code/modules/food_and_drinks/kitchen_machinery/kitchen_machine.dm
index 8db5fa8e319..06597129b2e 100644
--- a/code/modules/food_and_drinks/kitchen_machinery/kitchen_machine.dm
+++ b/code/modules/food_and_drinks/kitchen_machinery/kitchen_machine.dm
@@ -83,7 +83,7 @@
default_deconstruction_crowbar(user, O)
if(dirty == MAX_DIRT) // The machine is all dirty so can't be used!
- if(istype(O, /obj/item/reagent_containers/spray/cleaner) || istype(O, /obj/item/soap)) // If they're trying to clean it then let them
+ if(istype(O, /obj/item/reagent_containers/spray/cleaner) || istype(O, /obj/item/soap) || istype(O, /obj/item/reagent_containers/glass/rag)) // If they're trying to clean it then let them
user.visible_message("[user] starts to clean [src].", "You start to clean [src].")
if(do_after(user, 20 * O.toolspeed, target = src))
user.visible_message("[user] has cleaned [src].", "You have cleaned [src].")