mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-23 13:10:02 +01:00
* Runs grep checks on modular_skyrat and fixes all issues * feather * Update modular_skyrat/modules/verbs/code/say.dm Co-authored-by: Zonespace <41448081+Zonespace27@users.noreply.github.com> * loadout descs * fixes Co-authored-by: Zonespace <41448081+Zonespace27@users.noreply.github.com>
6 lines
123 B
Plaintext
6 lines
123 B
Plaintext
/mob/proc/get_top_level_mob()
|
|
if(ismob(loc) && (loc != src))
|
|
var/mob/M = loc
|
|
return M.get_top_level_mob()
|
|
return src
|