From ea6d74992f17491afb1c27d5ff1d107e736541f8 Mon Sep 17 00:00:00 2001 From: Menshin Date: Fri, 2 Jan 2015 17:51:34 +0100 Subject: [PATCH] Fixed a typo that can prevent gun firing message from appearing. --- code/modules/projectiles/gun.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/projectiles/gun.dm b/code/modules/projectiles/gun.dm index 5129c8f259f..b3c855e71da 100644 --- a/code/modules/projectiles/gun.dm +++ b/code/modules/projectiles/gun.dm @@ -90,7 +90,7 @@ if(!can_trigger_gun(L)) return - process_fire(target,user,flag,params) + process_fire(target,user,1,params) /obj/item/weapon/gun/proc/can_trigger_gun(mob/living/carbon/user) if (!user.IsAdvancedToolUser())