From 686cc45ca7f1925ecde8e2d727aa00ade860417c Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Thu, 19 Nov 2020 07:17:21 +0100 Subject: [PATCH] [MIRROR] makes wendigo screech use its name in one attack text (#1720) * makes wendigo screech use its name in one attack text (#55016) * makes wendigo screech use its name in one attack text * Update wendigo.dm * makes wendigo screech use its name in one attack text Co-authored-by: Fikou --- .../mob/living/simple_animal/hostile/megafauna/wendigo.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/simple_animal/hostile/megafauna/wendigo.dm b/code/modules/mob/living/simple_animal/hostile/megafauna/wendigo.dm index 6ac5e103de9..8e7c714f39c 100644 --- a/code/modules/mob/living/simple_animal/hostile/megafauna/wendigo.dm +++ b/code/modules/mob/living/simple_animal/hostile/megafauna/wendigo.dm @@ -183,7 +183,7 @@ Difficulty: Hard animate(pixel_z = 0, time = 1) for(var/mob/living/L in get_hearers_in_view(7, src) - src) L.Dizzy(6) - to_chat(L, "The wendigo screams loudly!") + to_chat(L, "[capitalize(src)] screams loudly!") SetRecoveryTime(30, 0) SLEEP_CHECK_DEATH(12) can_move = TRUE