From 329336f5ed41784a06e4d9993175c0b46d4be263 Mon Sep 17 00:00:00 2001 From: shellspeed1 <46614774+shellspeed1@users.noreply.github.com> Date: Fri, 12 Nov 2021 15:19:06 -0800 Subject: [PATCH] Update code/modules/projectiles/ammunition/special/syringe.dm Co-authored-by: Putnam3145 --- code/modules/projectiles/ammunition/special/syringe.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/projectiles/ammunition/special/syringe.dm b/code/modules/projectiles/ammunition/special/syringe.dm index 936725e59c..4eb7dc5475 100644 --- a/code/modules/projectiles/ammunition/special/syringe.dm +++ b/code/modules/projectiles/ammunition/special/syringe.dm @@ -36,7 +36,7 @@ var/obj/item/gun/chem/CG = loc if(CG.syringes_left <= 0) return - if (CG.vial == null) + if (!CG.vial) CG.syringes_left-- return CG.vial.reagents.trans_to(BB, dartvolume)