Removes weakens on tripping over simplebots (#18965)

title says all
This commit is contained in:
GDN
2022-09-07 07:39:45 -05:00
committed by GitHub
parent 1f2b29bd80
commit c7bb5763d7
3 changed files with 3 additions and 3 deletions
@@ -53,7 +53,7 @@
if(ismob(AM) && AM == target)
var/mob/living/carbon/C = AM
visible_message("[src] flails his swords and pushes [C] out of it's way!" )
C.Weaken(4 SECONDS)
C.KnockDown(4 SECONDS)
/mob/living/simple_animal/bot/secbot/griefsky/Initialize(mapload)
. = ..()
@@ -320,7 +320,7 @@
"[C] trips over [src] and falls!", \
"[C] topples over [src]!", \
"[C] leaps out of [src]'s way!")]</span>")
C.Weaken(10 SECONDS)
C.KnockDown(10 SECONDS)
playsound(loc, 'sound/misc/sadtrombone.ogg', 50, 1, -1)
if(!client)
speak("Honk!")
@@ -472,7 +472,7 @@
"[C] trips over [src] and falls!", \
"[C] topples over [src]!", \
"[C] leaps out of [src]'s way!")]</span>")
C.Weaken(4 SECONDS)
C.KnockDown(4 SECONDS)
return
..()