From 4e31a451545e063a6731937a2f7072dda750bfd2 Mon Sep 17 00:00:00 2001 From: Michiyamenotehifunana <31995558+Michiyamenotehifunana@users.noreply.github.com> Date: Tue, 3 Oct 2017 17:18:42 +0800 Subject: [PATCH] Nerf to 10mm Soporific Bullets (#3085) Makes it require 3 shots instead of just 2 to put your victim to sleep. --- code/citadel/cit_guns.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/citadel/cit_guns.dm b/code/citadel/cit_guns.dm index e62884ecbc..73a98db4e3 100644 --- a/code/citadel/cit_guns.dm +++ b/code/citadel/cit_guns.dm @@ -596,10 +596,10 @@ obj/item/projectile/bullet/c10mm/soporific if((blocked != 100) && isliving(target)) var/mob/living/L = target L.blur_eyes(6) - if(L.staminaloss >= 40) + if(L.staminaloss >= 60) L.Sleeping(250) else - L.adjustStaminaLoss(58) + L.adjustStaminaLoss(25) return 1 /obj/item/ammo_casing/c10mm/soporific