Update other_mobs.dm (#33950)

This commit is contained in:
boy2mantwicethefam
2023-01-03 03:29:44 +02:00
committed by GitHub
parent 81690891b5
commit 939bcaf552

View File

@@ -127,6 +127,7 @@
things considerably
*/
/mob/living/carbon/monkey/RestrainedClickOn(var/atom/A)
..()
if(a_intent != I_HURT || !ismob(A))
return
delayNextAttack(10)
@@ -151,6 +152,7 @@
//Humans being able to bite and kick while restrained, either generally or only when not being pulled or grabbed, according to config.human_captive_kickbite.
/mob/living/carbon/human/RestrainedClickOn(var/atom/A)
..()
if(a_intent != I_HURT || !attack_type || A.loc == src || !Adjacent(A))
return
if(is_pacified())