From 403c711414a99eb9ecd7c43f85ef0942a22a4d5d Mon Sep 17 00:00:00 2001 From: harryob Date: Sat, 9 Sep 2023 09:13:46 +0100 Subject: [PATCH] fixes the (JMP) links in chat (#4363) closes #4362 :cl: fix: fixes the JMP link in chat /:cl: --- code/modules/mob/mob_helpers.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/mob_helpers.dm b/code/modules/mob/mob_helpers.dm index 6eb32501512f..7862337b1eeb 100644 --- a/code/modules/mob/mob_helpers.dm +++ b/code/modules/mob/mob_helpers.dm @@ -548,7 +548,7 @@ var/global/list/limb_types_by_name = list( track_link = " (Follow)" if (source && action == NOTIFY_JUMP) var/turf/T = get_turf(source) - track_link = " (Jump)" + track_link = " (Jump)" var/full_enter_link if (enter_link) full_enter_link = "[(enter_text) ? "[enter_text]" : "(Claim)"]"