From dd36688e9a23c169725440184973e87d163418b7 Mon Sep 17 00:00:00 2001 From: Trilbyspaceclone <30435998+Trilbyspaceclone@users.noreply.github.com> Date: Sat, 29 Feb 2020 03:31:42 -0500 Subject: [PATCH] Update watercloset.dm --- code/game/objects/structures/watercloset.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/game/objects/structures/watercloset.dm b/code/game/objects/structures/watercloset.dm index 5c05eeee52..22d24a7ab6 100644 --- a/code/game/objects/structures/watercloset.dm +++ b/code/game/objects/structures/watercloset.dm @@ -620,17 +620,17 @@ if(steps == 3 && S.tool_behaviour == TOOL_SHOVEL) S.use_tool(src, user, 80, volume=100) steps = 4 - desc = "A deep patch of dirt, needs something to hold a bucket and rope. Just add some planks!" + desc = "A deep patch of dirt, needs something to hold a bucket and rope. Just add some wood planks!" icon_state = "well_3" return TRUE if(steps == 4 && istype(S, /obj/item/stack/sheet/mineral/wood)) if(S.use(3)) steps = 5 - desc = "A dug out well, A dug out well with out rope. Just add a cloth rope!" + desc = "A dug out well, A dug out well with out rope. Just add some cloth!" icon_state = "well_4" return TRUE else - to_chat(user, "You need at least three pieces planks!") + to_chat(user, "You need at least three planks!") return if(steps == 5 && istype(S, /obj/item/stack/sheet/cloth)) if(S.use(2))