From fb704afb61c213908a22fc70060b31455827cdcf Mon Sep 17 00:00:00 2001 From: deathride58 Date: Wed, 28 Nov 2018 22:47:34 -0500 Subject: [PATCH] makes gloves of the northstar restore 2/3 of the stamina used up by harm intent punches on empty stam buffers (#7770) --- code/modules/clothing/gloves/miscellaneous.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/clothing/gloves/miscellaneous.dm b/code/modules/clothing/gloves/miscellaneous.dm index 6c22334f78..b691074c27 100644 --- a/code/modules/clothing/gloves/miscellaneous.dm +++ b/code/modules/clothing/gloves/miscellaneous.dm @@ -69,6 +69,7 @@ if(M.a_intent == INTENT_HARM) M.changeNext_move(CLICK_CD_RAPID) + M.adjustStaminaLoss(-2) //Restore 2/3 of the stamina used assuming empty stam buffer. With proper stamina buffer management, this results in a net gain of +.5 stamina per click. if(warcry) M.say("[warcry]", ignore_spam = TRUE, forced = "north star warcry") .= FALSE