Update startreader.dm

This commit is contained in:
Killian
2022-02-01 15:21:23 +00:00
parent f1df2a0b31
commit c01bc7fe2d
@@ -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)