Files
CHOMPStation2/code/modules/surgery/_helpers.dm
CHOMPStation2StaffMirrorBot 5193d70d2b [MIRROR] Virology Update #3 (#10690)
Co-authored-by: Guti <32563288+TheCaramelion@users.noreply.github.com>
Co-authored-by: Cameron Lennox <killer65311@gmail.com>
Co-authored-by: chompstation-ci[bot] <199999496+chompstation-ci[bot]@users.noreply.github.com>
Co-authored-by: sunofang <38206283+sunofang@users.noreply.github.com>
Co-authored-by: Selis <12716288+ItsSelis@users.noreply.github.com>
Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
2025-04-21 22:23:01 +02:00

12 lines
225 B
Plaintext

/mob/living/proc/get_missing_limbs()
return list()
/mob/living/carbon/human/get_missing_limbs()
RETURN_TYPE(/list)
var/list/full = BP_ALL
for(var/zone in full)
if(get_bodypart_name(zone))
full -= zone
return full