From e427fcf8ce3498e597c3aa4973bcee06e7c87956 Mon Sep 17 00:00:00 2001 From: tattle <66640614+dragomagol@users.noreply.github.com> Date: Sat, 13 Aug 2022 10:40:14 -0700 Subject: [PATCH] Makes alerts for blind people being fed/stripped larger (#69171) Revert "blind alert too big for stripping and feeding (#69114)" This reverts commit 6b0c6e8dedc95d66a217a3cbb93e9d9e21322f14. --- code/datums/components/food/edible.dm | 6 +++--- code/datums/elements/strippable.dm | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/code/datums/components/food/edible.dm b/code/datums/components/food/edible.dm index fb3e7a0e4b0..eb1f806101e 100644 --- a/code/datums/components/food/edible.dm +++ b/code/datums/components/food/edible.dm @@ -380,14 +380,14 @@ Behavior that's still missing from this component that original food items had t span_userdanger("[feeder] attempts to [eater.get_bodypart(BODY_ZONE_HEAD) ? "feed you [parent]." : "stuff [parent] down your throat hole! Gross."]") ) if(eater.is_blind()) - to_chat(eater, span_danger("You feel someone trying to feed you something!")) + to_chat(eater, span_userdanger("You feel someone trying to feed you something!")) else eater.visible_message( span_danger("[feeder] cannot force any more of [parent] down [eater]'s [eater.get_bodypart(BODY_ZONE_HEAD) ? "throat!" : "throat hole! Eugh."]"), span_userdanger("[feeder] cannot force any more of [parent] down your [eater.get_bodypart(BODY_ZONE_HEAD) ? "throat!" : "throat hole! Eugh."]") ) if(eater.is_blind()) - to_chat(eater, span_danger("You're too full to eat what's being fed to you!")) + to_chat(eater, span_userdanger("You're too full to eat what's being fed to you!")) return if(!do_mob(feeder, eater, time = time_to_eat)) //Wait 3-ish seconds before you can feed return @@ -399,7 +399,7 @@ Behavior that's still missing from this component that original food items had t span_userdanger("[feeder] forces you to eat [parent]!") ) if(eater.is_blind()) - to_chat(eater, span_danger("You're forced to eat something!")) + to_chat(eater, span_userdanger("You're forced to eat something!")) TakeBite(eater, feeder) diff --git a/code/datums/elements/strippable.dm b/code/datums/elements/strippable.dm index 2b1e5b231d8..cf916335190 100644 --- a/code/datums/elements/strippable.dm +++ b/code/datums/elements/strippable.dm @@ -111,7 +111,7 @@ LAZYADD(victim_human.afk_thefts, new_entry) else if(victim_human.is_blind()) - to_chat(source, span_danger("You feel someone trying to put something on you.")) + to_chat(source, span_userdanger("You feel someone trying to put something on you.")) to_chat(user, span_notice("You try to put [equipping] on [source]...")) @@ -174,7 +174,7 @@ LAZYADD(victim_human.afk_thefts, new_entry) else if(victim_human.is_blind()) - to_chat(source, span_danger("You feel someone fumble with your belongings.")) + to_chat(source, span_userdanger("You feel someone fumble with your belongings.")) return TRUE