Some fixes

This commit is contained in:
BlackMajor
2022-08-30 22:24:10 +12:00
parent 72f1ddc6fa
commit 65e2cdd259
2 changed files with 25 additions and 14 deletions
@@ -608,4 +608,17 @@ var/global/list/disallowed_protean_accessories = list(
if(ismob(A)) // No instant mob attacking - though modules have their own cooldowns
setClickCooldown(get_attack_speed())
return 1
return 0
return 0
//Don't eat yourself, idiot
/mob/living/simple_mob/protean_blob/CanStumbleVore(mob/living/target)
if(target == humanform)
return FALSE
return ..()
/mob/living/carbon/human/CanStumbleVore(mob/living/target)
if(istype(target, /mob/living/simple_mob/protean_blob))
var/mob/living/simple_mob/protean_blob/PB = target
if(PB.humanform == src)
return FALSE
return ..()