diff --git a/code/_onclick/hud/screen_objects.dm b/code/_onclick/hud/screen_objects.dm index 4ff755428d..07ec9605c7 100644 --- a/code/_onclick/hud/screen_objects.dm +++ b/code/_onclick/hud/screen_objects.dm @@ -967,15 +967,17 @@ /obj/screen/ammo/proc/add_hud(var/mob/living/user, var/obj/item/weapon/gun/G) - if(G.hud_enabled == FALSE) - return - if(!user?.client) return if(!G) CRASH("/obj/screen/ammo/proc/add_hud() has been called from [src] without the required param of G") + //CHOMPAdd start + if(!G.hud_enabled) + return + //CHOMPAdd End + if(!G.has_ammo_counter()) return