From a17a8aa7a55e9dc08fb35b71b5e0d414d6b3ffbb Mon Sep 17 00:00:00 2001 From: Qwertytoforty <52090703+Qwertytoforty@users.noreply.github.com> Date: Sun, 14 Jan 2024 07:39:04 -0500 Subject: [PATCH] put some effort into it (#23764) --- code/modules/projectiles/guns/syringe_gun.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/modules/projectiles/guns/syringe_gun.dm b/code/modules/projectiles/guns/syringe_gun.dm index 45b30ddf7b3..39a292da958 100644 --- a/code/modules/projectiles/guns/syringe_gun.dm +++ b/code/modules/projectiles/guns/syringe_gun.dm @@ -68,6 +68,9 @@ /obj/item/gun/syringe/attackby(obj/item/A, mob/user, params, show_msg = TRUE) if(istype(A, /obj/item/reagent_containers/syringe)) + if(istype(A, /obj/item/reagent_containers/syringe/lethal)) + to_chat(user, "[A] is too big to fit into [src].") + return var/in_clip = length(syringes) + (chambered.BB ? 1 : 0) if(in_clip < max_syringes) if(!user.unEquip(A))