From a0d4549d2e6c6866eb156f01c63d16ea967641fc Mon Sep 17 00:00:00 2001 From: Belsima <31827220+Belsima@users.noreply.github.com> Date: Wed, 17 Jan 2018 19:20:07 -0500 Subject: [PATCH] Buffs the mop bucket by the same amount as the janicart. --- code/game/objects/structures/mop_bucket.dm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code/game/objects/structures/mop_bucket.dm b/code/game/objects/structures/mop_bucket.dm index 5e0c0d5abb..e7b90cd657 100644 --- a/code/game/objects/structures/mop_bucket.dm +++ b/code/game/objects/structures/mop_bucket.dm @@ -12,18 +12,18 @@ /obj/structure/mopbucket/New() - create_reagents(100) + create_reagents(300) ..() /obj/structure/mopbucket/examine(mob/user) if(..(user, 1)) - user << "[src] \icon[src] contains [reagents.total_volume] unit\s of water!" + to_chat(user, "[src] \icon[src] contains [reagents.total_volume] unit\s of water!") /obj/structure/mopbucket/attackby(obj/item/I, mob/user) if(istype(I, /obj/item/weapon/mop)) if(reagents.total_volume < 1) - user << "\The [src] is out of water!" + to_chat(user, "\The [src] is out of water!") else reagents.trans_to_obj(I, 5) - user << "You wet \the [I] in \the [src]." + to_chat(user, "You wet \the [I] in \the [src].") playsound(loc, 'sound/effects/slosh.ogg', 25, 1)