mirror of
https://github.com/Sandstorm-Station/Sandstorm-Station-13.git
synced 2026-08-18 10:47:16 +01:00
21 lines
511 B
Plaintext
21 lines
511 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/silicon/robot/mouth_is_free()
|
|
return TRUE
|
|
|
|
/mob/living/carbon/human/has_mouth()
|
|
return get_bodypart(BODY_ZONE_HEAD)
|
|
|
|
/mob/living/carbon/human/has_hands() // technically should be an and but i'll replicate original behavior
|
|
return get_bodypart(BODY_ZONE_L_ARM) || get_bodypart(BODY_ZONE_R_ARM)
|