Aliens and digitigrade legs use claw footprint sprite (#85898)

## About The Pull Request

Digitigrade legs use the claw footprint sprite

## Why It's Good For The Game

#81588 added support for legs to use alternative footprint sprites and
then just didn't add it to anything but monkey legs, even though the
sprites already exist. So let's use them

## Changelog

🆑 Melbert
qol: Xenos and digi lizards have claw footprints 
/🆑
This commit is contained in:
MrMelbert
2024-08-17 19:34:54 +02:00
committed by GitHub
parent 1ac49e2363
commit ba58a59615
2 changed files with 5 additions and 0 deletions
@@ -162,3 +162,6 @@ Des: Removes all infected images from the alien.
/mob/living/carbon/alien/proc/update_alien_speed()
add_or_update_variable_movespeed_modifier(/datum/movespeed_modifier/alien_speed, multiplicative_slowdown = alien_speed)
/mob/living/carbon/alien/get_footprint_sprite()
return FOOTPRINT_SPRITE_CLAWS
@@ -75,6 +75,7 @@
icon_greyscale = 'icons/mob/human/species/lizard/bodyparts.dmi'
limb_id = BODYPART_ID_DIGITIGRADE
bodyshape = BODYSHAPE_HUMANOID | BODYSHAPE_DIGITIGRADE
footprint_sprite = FOOTPRINT_SPRITE_CLAWS
/obj/item/bodypart/leg/left/digitigrade/update_limb(dropping_limb = FALSE, is_creating = FALSE)
. = ..()
@@ -90,6 +91,7 @@
icon_greyscale = 'icons/mob/human/species/lizard/bodyparts.dmi'
limb_id = BODYPART_ID_DIGITIGRADE
bodyshape = BODYSHAPE_HUMANOID | BODYSHAPE_DIGITIGRADE
footprint_sprite = FOOTPRINT_SPRITE_CLAWS
/obj/item/bodypart/leg/right/digitigrade/update_limb(dropping_limb = FALSE, is_creating = FALSE)
. = ..()