From a3880264a73938e77a736cffc610ea3ad473fe34 Mon Sep 17 00:00:00 2001
From: SkyratBot <59378654+SkyratBot@users.noreply.github.com>
Date: Tue, 2 Feb 2021 20:03:52 +0100
Subject: [PATCH] [MIRROR] You can now make damp rags by dipping a bolt of
cloth in a sink (#3023)
* You can now make damp rags by dipping a bolt of cloth in a sink (#56337)
Co-authored-by: Mothblocks <35135081+Jared-Fogle@ users.noreply.github.com>
* You can now make damp rags by dipping a bolt of cloth in a sink
Co-authored-by: ATH1909 <42606352+ATH1909@users.noreply.github.com>
Co-authored-by: Mothblocks <35135081+Jared-Fogle@ users.noreply.github.com>
---
code/game/objects/structures/watercloset.dm | 14 ++++++++++++++
1 file changed, 14 insertions(+)
diff --git a/code/game/objects/structures/watercloset.dm b/code/game/objects/structures/watercloset.dm
index 5df4317db8f..d0e31829e30 100644
--- a/code/game/objects/structures/watercloset.dm
+++ b/code/game/objects/structures/watercloset.dm
@@ -376,6 +376,13 @@
G.use(1)
return
+ if(istype(O, /obj/item/stack/sheet/cloth))
+ var/obj/item/stack/sheet/cloth/cloth = O
+ new /obj/item/reagent_containers/glass/rag(loc)
+ to_chat(user, "You tear off a strip of cloth and make a rag.")
+ cloth.use(1)
+ return
+
if(istype(O, /obj/item/stack/ore/glass))
new /obj/item/stack/sheet/sandblock(loc)
to_chat(user, "You wet the sand in the sink and form it into a block.")
@@ -554,6 +561,13 @@
G.use(1)
return
+ if(istype(O, /obj/item/stack/sheet/cloth))
+ var/obj/item/stack/sheet/cloth/cloth = O
+ new /obj/item/reagent_containers/glass/rag(loc)
+ to_chat(user, "You tear off a strip of cloth and make a rag.")
+ cloth.use(1)
+ return
+
if(istype(O, /obj/item/stack/ore/glass))
new /obj/item/stack/sheet/sandblock(loc)
to_chat(user, "You wet the sand and form it into a block.")