mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2026-08-25 21:56:42 +01:00
15 lines
277 B
Plaintext
15 lines
277 B
Plaintext
/mob/living/proc/has_hands()
|
|
return TRUE
|
|
|
|
/mob/living/proc/has_mouth()
|
|
return TRUE
|
|
|
|
/mob/living/proc/mouth_is_free()
|
|
return !is_mouth_covered()
|
|
|
|
/mob/living/proc/foot_is_free()
|
|
return is_barefoot()
|
|
|
|
/mob/living/carbon/human/has_mouth()
|
|
return get_bodypart(BODY_ZONE_HEAD)
|