Merge pull request #8609 from Poojawa/simple_mob_nomming-I-guess

Client check to possibly fix #8542
This commit is contained in:
deathride58
2019-06-14 20:49:28 -04:00
committed by GitHub
@@ -348,7 +348,7 @@
if(vore_active)
if(isliving(target))
var/mob/living/L = target
if(L.Adjacent(src) && L.devourable) // aggressive check to ensure vore attacks can be made
if(!client && L.Adjacent(src) && L.devourable) // aggressive check to ensure vore attacks can be made
if(prob(voracious_chance))
vore_attack(src,L,src)
else