Merge pull request #12140 from KillianKirilenko/kk-test

Startreader Stunlocks Begone
This commit is contained in:
Casey
2022-02-01 19:49:49 +00:00
committed by CHOMPStation2
parent e1b05dfd49
commit daa703ac73
@@ -109,12 +109,11 @@
destructive = TRUE
violent_breakthrough = TRUE
/mob/living/simple_mob/vore/alienanimals/startreader/apply_melee_effects(var/atom/A)
if(weakened) //Don't stun people while they're already stunned! That's SILLY!
/mob/living/simple_mob/vore/alienanimals/startreader/apply_melee_effects(mob/living/L)
if(L.weakened) //Don't stun people while they're already stunned! That's SILLY!
return
if(prob(15))
var/mob/living/L = A
if(isliving(A))
if(isliving(L))
visible_message("<span class='danger'>\The [src] trips \the [L]!</span>!")
L.weakened += rand(1,10)