Skip to content

Commit

Permalink
Update weapon_mom_concgrenade.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
Mac-tf2 authored and Gocnak committed Jan 9, 2021
1 parent e0469b7 commit 09f0c8a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mp/src/game/shared/momentum/weapon/weapon_mom_concgrenade.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
#include "tier0/memdbgon.h"

// Minimum time the grenade needs to be cooked for before it can be thrown
#define CONC_THROW_DELAY 0.5f
#define CONC_THROW_DELAY 0.8f
#define CONC_THROWSPEED 660.0f
#define CONC_SPAWN_ANG_X 18.5f

Expand Down Expand Up @@ -152,7 +152,7 @@ void CMomentumConcGrenade::ItemPostFrame()

void CMomentumConcGrenade::StartGrenadeThrow()
{
m_flThrowTime = gpGlobals->curtime + (0.5f - (gpGlobals->curtime - m_flTimer));
m_flThrowTime = gpGlobals->curtime + (0.8f - (gpGlobals->curtime - m_flTimer));
}

void CMomentumConcGrenade::ThrowGrenade(float flTimer)
Expand Down Expand Up @@ -197,5 +197,5 @@ void CMomentumConcGrenade::ThrowGrenade(float flTimer)

SendWeaponAnim(ACT_VM_THROW);

m_flNextPrimaryAttack = gpGlobals->curtime + 0.5f;
m_flNextPrimaryAttack = gpGlobals->curtime + 0.1f;
}

0 comments on commit 09f0c8a

Please sign in to comment.