From 8ade2d8d188620a7975cc0b518330bfb40321cfc Mon Sep 17 00:00:00 2001 From: Rhials Date: Mon, 15 Aug 2022 23:12:11 -0400 Subject: [PATCH] Fixes messages for PAI hacking cable extension (#69217) Updates the visible messages for the PAI's extend_cable proc. They no longer speak to everyone who can see it in the first person. --- code/modules/pai/door_jack.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/pai/door_jack.dm b/code/modules/pai/door_jack.dm index 0bb9b50aec6..ef6e6281bc8 100644 --- a/code/modules/pai/door_jack.dm +++ b/code/modules/pai/door_jack.dm @@ -37,12 +37,12 @@ hacking_cable = new var/mob/living/carbon/hacker = get_holder() if(iscarbon(hacker) && hacker.put_in_hands(hacking_cable)) //important to double check since get_holder can return non-null values that aren't carbons. - hacker.visible_message(span_notice("A port on [src] opens to reveal a cable, which you quickly grab."), span_hear("You hear the soft click of a plastic component and manage to catch the falling cable.")) + hacker.visible_message(span_notice("A port on [src] opens to reveal a cable, which [hacker] quickly grabs."), span_notice("A port on [src] opens to reveal a cable, which you quickly grab."), span_hear("You hear the soft click of a plastic component and manage to catch the falling cable.")) track_pai() track_thing(hacking_cable) return TRUE hacking_cable.forceMove(drop_location()) - hacking_cable.visible_message(span_notice("A port on [src] opens to reveal a cable, which promptly falls to the floor."), span_hear("You hear the soft click of a plastic component fall to the ground.")) + hacking_cable.visible_message(message = span_notice("A port on [src] opens to reveal a cable, which promptly falls to the floor."), blind_message = span_hear("You hear the soft click of a plastic component fall to the ground.")) track_pai() track_thing(hacking_cable) return TRUE