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)