mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-08-31 01:00:59 +01:00
Some fixes
This commit is contained in:
+14
-1
@@ -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 ..()
|
||||
Reference in New Issue
Block a user