diff --git a/code/modules/projectiles/gun.dm b/code/modules/projectiles/gun.dm index 229a1cb6181..aa308644e11 100644 --- a/code/modules/projectiles/gun.dm +++ b/code/modules/projectiles/gun.dm @@ -144,11 +144,13 @@ return if(!can_shoot()) //Just because you can pull the trigger doesn't mean it can't shoot. + shoot_with_empty_chamber(user) return if(flag) - handle_suicide(user, target, params) // - return + if(user.zone_selected == "mouth") + handle_suicide(user, target, params) + return //Exclude lasertag guns from the CLUMSY check.