Fix warnings about wrong identation.

This commit is contained in:
Andrey Akhmichin 2024-03-01 08:35:31 +05:00
parent 65de7cc51d
commit e45b5a1963
2 changed files with 3 additions and 1 deletions

View File

@ -213,7 +213,7 @@ BOOL UTIL_OBB_PointTest(Vector vecSrc, Vector boxP, Vector boxE)
(vecSrc.z > (boxP.z + boxE.z) ))
return FALSE;
return TRUE;
return TRUE;
}
void UTIL_SpeakAll( const char *message )

View File

@ -714,8 +714,10 @@ void CHgun::MultiZapGun()
EMIT_SOUND_DYN( ENT(m_pPlayer->pev), CHAN_WEAPON, "debris/zap4.wav", 1, ATTN_NORM, 0,100 + m_iBeams * 10 );
}
else
{
m_iFirePhase = HGUN_ZAP;
m_fNextPhaseTime = gpGlobals->time + 0.1f;
}
}
break;
case HGUN_ZAP: