Skip to content

Commit

Permalink
Assert() to assert
Browse files Browse the repository at this point in the history
Co-authored-by: s1lentq <[email protected]>
  • Loading branch information
wopox1337 and s1lentq committed Dec 13, 2023
1 parent d95d76d commit f79351a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion regamedll/dlls/multiplay_gamerules.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5421,7 +5421,7 @@ void CHalfLifeMultiplay::GiveDefuserToRandomPlayer()
for ( int i = 0; i < iDefusersToGive && i < candidates.Count(); ++i )
{
CBasePlayer *pPlayer = candidates[i];
Assert( pPlayer && pPlayer->m_iTeam == CT && pPlayer->IsAlive() );
assert( pPlayer && pPlayer->m_iTeam == CT && pPlayer->IsAlive() );

pPlayer->GiveDefuser();
ClientPrint(pPlayer->pev, HUD_PRINTCENTER, "#Got_defuser");
Expand Down

0 comments on commit f79351a

Please sign in to comment.