From 537e72a65798f0fdfbb14aa92653f8a85d2d42b3 Mon Sep 17 00:00:00 2001
From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com>
Date: Sun, 24 Apr 2022 23:38:50 +0100
Subject: [PATCH] Update trash.dm
---
code/datums/elements/trash.dm | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/code/datums/elements/trash.dm b/code/datums/elements/trash.dm
index a83889c6ca..fb46cf37d6 100644
--- a/code/datums/elements/trash.dm
+++ b/code/datums/elements/trash.dm
@@ -11,9 +11,9 @@
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 [source] into their [H.vore_selected]",
- "You [H.vore_selected.vore_verb]s the [source] into your [H.vore_selected]")
+ H.visible_message("[H] [H.vore_selected.vore_verb]s the [source.name] into their [H.vore_selected.name]",
+ "You [H.vore_selected.vore_verb]s the [source.name] into your [H.vore_selected.name]")
source.forceMove(H.vore_selected)
else
- H.visible_message("[H] consumes the [source].")
+ H.visible_message("[H] consumes the [source.name].")
qdel(source)