From ca70bb5c8f90b6f73aa256a512d5a7679c383c60 Mon Sep 17 00:00:00 2001 From: ihatethisengine <115417687+ihatethisengine@users.noreply.github.com> Date: Thu, 16 Nov 2023 01:50:42 +0300 Subject: [PATCH] Update mob_grab.dm --- code/modules/mob/mob_grab.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/mob_grab.dm b/code/modules/mob/mob_grab.dm index f59078a85595..58293df67cf9 100644 --- a/code/modules/mob/mob_grab.dm +++ b/code/modules/mob/mob_grab.dm @@ -129,9 +129,9 @@ to_chat(xeno, SPAN_WARNING("You are already busy with something.")) return xeno.visible_message(SPAN_DANGER("[xeno] starts to devour [pulled]!"), \ + SPAN_DANGER("You start to devour [pulled]!"), null, 5) if(HAS_TRAIT(xeno, TRAIT_CLOAKED)) //cloaked don't show the visible message, so we gotta work around to_chat(pulled, FONT_SIZE_HUGE(SPAN_DANGER("[xeno] is trying to devour you!")) - SPAN_DANGER("You start to devour [pulled]!"), null, 5) if(do_after(xeno, 50, INTERRUPT_NO_NEEDHAND, BUSY_ICON_HOSTILE)) if(isxeno(pulled.loc) && !xeno.stomach_contents.len) to_chat(xeno, SPAN_WARNING("Someone already ate \the [pulled]."))