mirror of
https://github.com/nillerusr/source-engine.git
synced 2025-04-05 16:15:35 +00:00
game: change ShouldWarnOnCap to GetCapWarningLevel (sdk 2007-2013)
This commit is contained in:
parent
b92648026f
commit
df71b52d11
@ -81,7 +81,7 @@ void C_TFObjectiveResource::SetCappingTeam( int index, int team )
|
||||
//Display warning that someone is capping our point.
|
||||
//Only do this at the start of a cap and if WE own the point.
|
||||
//Also don't warn on a point that will do a "Last Point cap" warning.
|
||||
if ( GetNumControlPoints() > 0 && ShouldWarnOnCap( index ) == false && GetCPCapPercentage( index ) == 0.0f && team != TEAM_UNASSIGNED && GetOwningTeam( index ) != TEAM_UNASSIGNED )
|
||||
if ( GetNumControlPoints() > 0 && GetCapWarningLevel( index ) == 0 && GetCPCapPercentage( index ) == 0.0f && team != TEAM_UNASSIGNED && GetOwningTeam( index ) != TEAM_UNASSIGNED )
|
||||
{
|
||||
C_BasePlayer *pLocalPlayer = C_BasePlayer::GetLocalPlayer();
|
||||
if ( pLocalPlayer )
|
||||
|
Loading…
Reference in New Issue
Block a user