mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 02:34:00 +00:00
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>
12 lines
225 B
Plaintext
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
|