From 10683b8f56a88f2e15f9b11e4453a19dd93bfe0e Mon Sep 17 00:00:00 2001 From: Night Owl Date: Wed, 14 Jun 2017 23:49:49 +0500 Subject: [PATCH] Fix my mistake. --- cl_dll/ammo.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cl_dll/ammo.cpp b/cl_dll/ammo.cpp index 112f733c..57aaa456 100644 --- a/cl_dll/ammo.cpp +++ b/cl_dll/ammo.cpp @@ -881,7 +881,7 @@ int CHudAmmo::Draw( float flTime ) y = ScreenHeight - gHUD.m_iFontHeight - gHUD.m_iFontHeight / 2; // Does weapon have any ammo at all? - if( m_pWeapon->iAmmoType > 0 ) + if( m_pWeapon->iAmmoType > 0 && m_pWeapon->hDuckHunt == 0 ) { int iIconWidth = m_pWeapon->rcAmmo.right - m_pWeapon->rcAmmo.left;