From a1cc6194214f2edec3c1f854537d4e1171ea150b Mon Sep 17 00:00:00 2001
From: KittyNoodle <78111117+KittyNoodle@users.noreply.github.com>
Date: Tue, 5 Jul 2022 09:10:58 -0500
Subject: [PATCH] Punch stuns now knockdown instead of hard stunning. (#18191)
---
code/modules/mob/living/carbon/human/species/_species.dm | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/code/modules/mob/living/carbon/human/species/_species.dm b/code/modules/mob/living/carbon/human/species/_species.dm
index 5568d569dfa..68c24b0242c 100644
--- a/code/modules/mob/living/carbon/human/species/_species.dm
+++ b/code/modules/mob/living/carbon/human/species/_species.dm
@@ -504,9 +504,9 @@
target.visible_message("[user] [pick(attack.attack_verb)]ed [target]!")
target.apply_damage(damage, BRUTE, affecting, armor_block, sharp = attack.sharp) //moving this back here means Armalis are going to knock you down 70% of the time, but they're pure adminbus anyway.
if((target.stat != DEAD) && damage >= user.dna.species.punchstunthreshold)
- target.visible_message("[user] has weakened [target]!", \
- "[user] has weakened [target]!")
- target.apply_effect(8 SECONDS, WEAKEN, armor_block)
+ target.visible_message("[user] has knocked down [target]!", \
+ "[user] has knocked down [target]!")
+ target.KnockDown(4 SECONDS)
target.forcesay(GLOB.hit_appends)
else if(IS_HORIZONTAL(target))
target.forcesay(GLOB.hit_appends)