Files
CHOMPStation2/code/modules/mob/say_ch.dm
2023-07-17 10:16:06 +02:00

10 lines
300 B
Plaintext

/atom/proc/get_ultimate_mob() //seems like the wrong place for it, but other stuff uses this
var/mob/ultimate_mob
var/atom/to_check = loc
var/n = 0
while (to_check && !isturf(to_check) && n++ < 16)
if (ismob(to_check))
ultimate_mob = to_check
to_check = to_check.loc
return ultimate_mob