From 01f2a81a5ee2e77c3a3cbab8354bf5ef54916cb1 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Sun, 17 Oct 2021 02:40:28 +0200 Subject: [PATCH] [MIRROR] Broken Secways will say it's broken, rather than the component. [MDB IGNORE] (#8874) * Broken Secways will say it's broken, rather than the component. (#62096) changes it from "/datum/component/riding/vehicle/secway sputters and refuses to move!" to "The secway sputters and refuses to move!" * Broken Secways will say it's broken, rather than the component. Co-authored-by: John Willard <53777086+JohnFulpWillard@users.noreply.github.com> --- code/datums/components/riding/riding_vehicle.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/components/riding/riding_vehicle.dm b/code/datums/components/riding/riding_vehicle.dm index 376f571a4e0..6b13f2b46b3 100644 --- a/code/datums/components/riding/riding_vehicle.dm +++ b/code/datums/components/riding/riding_vehicle.dm @@ -185,7 +185,7 @@ if(keycheck(user) && the_secway.eddie_murphy) if(COOLDOWN_FINISHED(src, message_cooldown)) - the_secway.visible_message(span_warning("[src] sputters and refuses to move!")) + the_secway.visible_message(span_warning("[the_secway] sputters and refuses to move!")) playsound(get_turf(the_secway), 'sound/effects/stall.ogg', 70) COOLDOWN_START(src, message_cooldown, 0.75 SECONDS) return COMPONENT_DRIVER_BLOCK_MOVE