This commit is contained in:
Roman Chistokhodov 2021-03-16 18:53:50 +03:00 committed by Andrey Akhmichin
parent ea9eb82646
commit 9fecfb50f3

View File

@ -637,7 +637,7 @@ void DoSpark( entvars_t *pev, const Vector &location )
void CBaseButton::ButtonSpark( void ) void CBaseButton::ButtonSpark( void )
{ {
SetThink( &CBaseButton::ButtonSpark ); 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 ); DoSpark( pev, pev->mins );
} }