From 190fbcbd203d777048d1a6de3deeed6802b65cd8 Mon Sep 17 00:00:00 2001 From: Tigercat2000 Date: Fri, 17 Apr 2015 03:16:01 -0700 Subject: [PATCH] Updates the drunk-brawling fighting style This commit updates drunk-brawling martial art style to follow Fox-P-McCloud's suggestion of it being set to Paralyse() instead of SetSleeping(). --- code/datums/martial.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/martial.dm b/code/datums/martial.dm index 79544d3eccb..6fbe984e6ad 100644 --- a/code/datums/martial.dm +++ b/code/datums/martial.dm @@ -174,7 +174,7 @@ D.visible_message("[A] has knocked [D] out with a haymaker!", \ "[A] has knocked [D] out with a haymaker!") D.apply_effect(10,WEAKEN,armor_block) - D.SetSleeping(5) + D.Paralyse(5) D.forcesay(hit_appends) else if(D.lying) D.forcesay(hit_appends)