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