From 45b89de37edf3ef6524e49199a03fd0264081051 Mon Sep 17 00:00:00 2001 From: SamCroswell Date: Fri, 3 Jul 2015 01:03:59 -0400 Subject: [PATCH] Swaps Weaken Values, Fixes Span Bug --- code/datums/martial.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/datums/martial.dm b/code/datums/martial.dm index cfcca8d0a69..7c6bac1a89a 100644 --- a/code/datums/martial.dm +++ b/code/datums/martial.dm @@ -344,7 +344,7 @@ D.emote("scream") D.drop_item() D.apply_damage(5, BRUTE, pick("l_arm", "r_arm")) - D.Stun(2) + D.Stun(1) return 1 return basic_hit(A,D) @@ -361,10 +361,10 @@ /datum/martial_art/the_sleeping_carp/proc/kneeStomach(var/mob/living/carbon/human/A, var/mob/living/carbon/human/D) if(!D.stat && !D.weakened) D.visible_message("[A] knees [D] in the stomach!", \ - "[A] winds you with a knee in the stomach!") + "[A] winds you with a knee in the stomach!") D.audible_message("[D] gags!") D.losebreath += 3 - D.Stun(1) + D.Stun(2) playsound(get_turf(D), 'sound/weapons/punch1.ogg', 50, 1, -1) return 1 return basic_hit(A,D)