From 6ae5bfef8a3e4be3dbd48d322f835d51c200cdde Mon Sep 17 00:00:00 2001 From: Adrer Date: Fri, 6 Sep 2024 01:06:56 +0200 Subject: [PATCH] [TWEAK] Makes vampire warning for burning in space a bit more obvious. (#26643) * Makes the warning you're about to burn up in space a bit more obvious. * Light -> Starlight --------- Co-authored-by: adrermail@gmail.com --- code/modules/antagonists/vampire/vamp_datum.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/antagonists/vampire/vamp_datum.dm b/code/modules/antagonists/vampire/vamp_datum.dm index e9ba8c78bba..60588ac5ca3 100644 --- a/code/modules/antagonists/vampire/vamp_datum.dm +++ b/code/modules/antagonists/vampire/vamp_datum.dm @@ -226,11 +226,11 @@ RESTRICT_TYPE(/datum/antagonist/vampire) if(T.density) return if(bloodusable >= 10) //burn through your blood to tank the light for a little while - to_chat(owner.current, "The starlight saps your strength!") + to_chat(owner.current, "The starlight saps your strength, you should get out of the starlight!") subtract_usable_blood(10) vamp_burn(10) else //You're in trouble, get out of the sun NOW - to_chat(owner.current, "Your body is turning to ash, get out of the light now!") + to_chat(owner.current, "Your body is turning to ash, get out of the starlight NOW!") owner.current.adjustCloneLoss(10) //I'm melting! vamp_burn(85) if(owner.current.cloneloss >= 100)