Clown is slippery and the mime has no footsteps (#21675)

* Clown is slippery and the mime has no footsteps

* bam
This commit is contained in:
GDN
2023-07-24 09:28:51 -05:00
committed by GitHub
parent 42bd162122
commit d907f0610e
5 changed files with 25 additions and 3 deletions
@@ -20,6 +20,17 @@
UpdateAppearance()
GLOB.human_list += src
AddComponent(/datum/component/footstep, FOOTSTEP_MOB_HUMAN, 1, -6)
RegisterSignal(src, COMSIG_BODY_TRANSFER_TO, PROC_REF(mind_checks))
/**
* Handles any adjustments to the mob after a mind transfer.
*/
/mob/living/carbon/human/proc/mind_checks()
if(!mind)
return
if(mind.miming)
qdel(GetComponent(/datum/component/footstep))
/**
* Sets up DNA and species.
@@ -68,6 +79,7 @@
splinted_limbs.Cut()
QDEL_NULL(physiology)
GLOB.human_list -= src
UnregisterSignal(src, COMSIG_BODY_TRANSFER_TO)
/mob/living/carbon/human/dummy
real_name = "Test Dummy"