diff --git a/code/modules/mob/mob.dm b/code/modules/mob/mob.dm index b890208d2b..f6db425a7d 100644 --- a/code/modules/mob/mob.dm +++ b/code/modules/mob/mob.dm @@ -591,7 +591,8 @@ if(client && client.holder) if(statpanel("MC")) - stat("Location:", "([x], [y], [z])") + var/turf/T = get_turf(client.eye) + stat("Location:", COORD(T)) stat("CPU:", "[world.cpu]") stat("Instances:", "[world.contents.len]") GLOB.stat_entry()