From a47a7b31ba465169a726e156bbd507a0484290ab Mon Sep 17 00:00:00 2001 From: Ghommie Date: Sun, 26 May 2019 06:56:02 +0200 Subject: [PATCH] more leniency. --- code/game/objects/items/stunbaton.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/stunbaton.dm b/code/game/objects/items/stunbaton.dm index df59b924fe..5a9f3c34e8 100644 --- a/code/game/objects/items/stunbaton.dm +++ b/code/game/objects/items/stunbaton.dm @@ -54,7 +54,7 @@ //Note this value returned is significant, as it will determine //if a stun is applied or not . = cell.use(chrgdeductamt) - if(status && (!. || (chargecheck && cell.charge < hitcost))) + if(status && (!. || (chargecheck && cell.charge < hitcost * STUNBATON_CHARGE_LENIENCY))) //we're below minimum, turn off switch_status(FALSE)