From 5490519c48632b9149131d7cfcd6492347660377 Mon Sep 17 00:00:00 2001 From: timothyteakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Wed, 14 Jul 2021 00:22:12 +0100 Subject: [PATCH] Update trash.dm --- code/game/objects/items/trash.dm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/code/game/objects/items/trash.dm b/code/game/objects/items/trash.dm index 0f0416bb3c..c0ff958612 100644 --- a/code/game/objects/items/trash.dm +++ b/code/game/objects/items/trash.dm @@ -87,9 +87,10 @@ if(HAS_TRAIT(H, TRAIT_TRASHCAN)) playsound(H.loc,'sound/items/eatfood.ogg', rand(10,50), 1) if(H.vore_selected) - H.visible_message("[H] [H.vore_selected.vore_verb]s the [src] into their [H.vore_selected]") + H.visible_message("[H] [H.vore_selected.vore_verb]s the [src] into their [H.vore_selected]", + "You [H.vore_selected.vore_verb]s the [src] into your [H.vore_selected]") forceMove(H.vore_selected) else - H.visible_message("[H] consumes the [src]") + H.visible_message("[H] consumes the [src].") qdel(src)