Skip to content

Commit

Permalink
fixes the (JMP) links in chat (#4363)
Browse files Browse the repository at this point in the history
closes #4362 

🆑
fix: fixes the JMP link in chat
/🆑
  • Loading branch information
harryob committed Sep 9, 2023
1 parent 1b5b706 commit 403c711
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/modules/mob/mob_helpers.dm
Original file line number Diff line number Diff line change
Expand Up @@ -548,7 +548,7 @@ var/global/list/limb_types_by_name = list(
track_link = " <a href='byond://?src=[REF(src)];track=[REF(source)]'>(Follow)</a>"
if (source && action == NOTIFY_JUMP)
var/turf/T = get_turf(source)
track_link = " <a href='byond://?src=[REF(src)];jumptocoord;x=[T.x];y=[T.y];z=[T.z]'>(Jump)</a>"
track_link = " <a href='byond://?src=[REF(src)];jumptocoord;X=[T.x];Y=[T.y];Z=[T.z]'>(Jump)</a>"
var/full_enter_link
if (enter_link)
full_enter_link = "<a href='byond://?src=[REF(src)];[enter_link]'>[(enter_text) ? "[enter_text]" : "(Claim)"]</a>"
Expand Down

0 comments on commit 403c711

Please sign in to comment.