Increase detonate threshold

This commit is contained in:
mittorn 2016-03-03 20:36:58 +00:00
parent db3aeb6ebf
commit 833bd215d7
1 changed files with 1 additions and 1 deletions

View File

@ -782,7 +782,7 @@ void CProp::BounceTouch(CBaseEntity *pOther)
}
m_flNextAttack = gpGlobals->time + 1.0; // debounce
}
if( (pev->spawnflags & SF_PROP_BREAKABLE) && (pev->velocity.Length() > 700) )
if( (pev->spawnflags & SF_PROP_BREAKABLE) && (pev->velocity.Length() > 999) )
{
pev->nextthink = gpGlobals->time + 0.1;
SetThink( &CProp::DieThink );