Browse Source

Merge 2ca64e11b0

hl_urbicide
Roman Chistokhodov 4 years ago committed by Andrey Akhmichin
parent
commit
9fecfb50f3
  1. 2
      dlls/buttons.cpp

2
dlls/buttons.cpp

@ -637,7 +637,7 @@ void DoSpark( entvars_t *pev, const Vector &location ) @@ -637,7 +637,7 @@ void DoSpark( entvars_t *pev, const Vector &location )
void CBaseButton::ButtonSpark( void )
{
SetThink( &CBaseButton::ButtonSpark );
pev->nextthink = gpGlobals->time + 0.1f + RANDOM_FLOAT( 0.0f, 1.5f );// spark again at random interval
pev->nextthink = pev->ltime + 0.1f + RANDOM_FLOAT( 0.0f, 1.5f );// spark again at random interval
DoSpark( pev, pev->mins );
}

Loading…
Cancel
Save