From 7c984378929b69f72da65e0b4df4fefe27ae2ccf Mon Sep 17 00:00:00 2001 From: Couls Date: Tue, 9 Jul 2019 18:09:21 -0400 Subject: [PATCH] send message to the right person --- code/game/gamemodes/vampire/vampire.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/gamemodes/vampire/vampire.dm b/code/game/gamemodes/vampire/vampire.dm index 9e68a4e6fda..934b7866302 100644 --- a/code/game/gamemodes/vampire/vampire.dm +++ b/code/game/gamemodes/vampire/vampire.dm @@ -313,7 +313,7 @@ You are weak to holy things and starlight. Don't go into space and avoid the Cha if(ishuman(owner)) var/mob/living/carbon/human/V = owner if(issmall(H) && !H.ckey) - to_chat(src, "Your feeding on [H] reduces your hunger, but you get no usable blood from it.") + to_chat(V, "Your feeding on [H] reduces your hunger, but you get no usable blood from it.") V.nutrition = min(NUTRITION_LEVEL_WELL_FED, V.nutrition + 5) else V.nutrition = min(NUTRITION_LEVEL_WELL_FED, V.nutrition + (blood / 2))