@@ -41,10 +41,10 @@ static ConVar tf_stats_nogameplaycheck( "tf_stats_nogameplaycheck", "0", FCVAR_N
41
41
// static ConVar tf_stats_track( "tf_stats_track", "1", FCVAR_NONE, "Turn on//off tf stats tracking." );
42
42
// static ConVar tf_stats_verbose( "tf_stats_verbose", "0", FCVAR_NONE, "Turn on//off verbose logging of stats." );
43
43
#ifdef BDSBASE
44
- ConVar tf_stats_bogus_damage_max (" tf_stats_bogus_damage_max" , " 1500" , FCVAR_REPLICATED, " Maximum Damage before Bogus warning" );
45
- ConVar tf_stats_bogus_damage_mvm_max (" tf_stats_bogus_damage_mvm_max" , " 5000" , FCVAR_REPLICATED, " Maximum Damage in MvM before Bogus warning" );
46
- ConVar tf_stats_bogus_healing_max (" tf_stats_bogus_healing_max" , " 1000" , FCVAR_REPLICATED, " Maximum Healing before Bogus warning" );
47
- ConVar tf_stats_bogus_block_damage_max (" tf_stats_bogus_block_damage_max" , " 3000" , FCVAR_REPLICATED, " Maximum Damage Blocked before Bogus warning" );
44
+ ConVar tf_stats_bogus_damage_max (" tf_stats_bogus_damage_max" , " 1500" , FCVAR_REPLICATED, " Maximum damage before bogus warning" );
45
+ ConVar tf_stats_bogus_damage_mvm_max (" tf_stats_bogus_damage_mvm_max" , " 5000" , FCVAR_REPLICATED, " Maximum damage in MvM before bogus warning" );
46
+ ConVar tf_stats_bogus_healing_max (" tf_stats_bogus_healing_max" , " 1000" , FCVAR_REPLICATED, " Maximum healing before bogus warning" );
47
+ ConVar tf_stats_bogus_block_damage_max (" tf_stats_bogus_block_damage_max" , " 3000" , FCVAR_REPLICATED, " Maximum damage blocked before bogus warning" );
48
48
ConVar tf_stats_bogus_return (" tf_stats_bogus_return" , " 1" , FCVAR_REPLICATED, " Return without recording stats if bogus values are found" );
49
49
#endif
50
50
@@ -737,12 +737,12 @@ void CTFGameStats::Event_PlayerHealedOther( CTFPlayer *pPlayer, float amount )
737
737
#ifdef BDSBASE
738
738
if (tf_stats_bogus_return.GetBool ())
739
739
{
740
- DevMsg (" CTFGameStats: Bogus Healing value found, %d, ignoring\n " , iAmount);
740
+ DevMsg (" CTFGameStats: bogus healing value found, %d, ignoring\n " , iAmount);
741
741
return ;
742
742
}
743
743
else
744
744
{
745
- DevMsg (" CTFGameStats: Bogus Healing value found, %d\n " , iAmount);
745
+ DevMsg (" CTFGameStats: bogus healing value found, %d\n " , iAmount);
746
746
}
747
747
#else
748
748
DevMsg ( " CTFGameStats: bogus healing value of %d reported, ignoring\n " , iAmount );
@@ -790,12 +790,12 @@ void CTFGameStats::Event_PlayerHealedOtherAssist( CTFPlayer *pPlayer, float amou
790
790
#ifdef BDSBASE
791
791
if (tf_stats_bogus_return.GetBool ())
792
792
{
793
- DevMsg (" CTFGameStats: Bogus Healing value found, %d, ignoring\n " , iAmount);
793
+ DevMsg (" CTFGameStats: bogus healing value found, %d, ignoring\n " , iAmount);
794
794
return ;
795
795
}
796
796
else
797
797
{
798
- DevMsg (" CTFGameStats: Bogus Healing value found, %d\n " , iAmount);
798
+ DevMsg (" CTFGameStats: bogus healing value found, %d\n " , iAmount);
799
799
}
800
800
#else
801
801
DevMsg ( " CTFGameStats: bogus healing value of %d reported, ignoring\n " , iAmount );
@@ -821,12 +821,12 @@ void CTFGameStats::Event_PlayerBlockedDamage( CTFPlayer *pPlayer, int nAmount )
821
821
#ifdef BDSBASE
822
822
if (tf_stats_bogus_return.GetBool ())
823
823
{
824
- DevMsg (" CTFGameStats: Bogus Blocked Damage value found, %d, ignoring\n " , nAmount);
824
+ DevMsg (" CTFGameStats: bogus blocked damage value found, %d, ignoring\n " , nAmount);
825
825
return ;
826
826
}
827
827
else
828
828
{
829
- DevMsg (" CTFGameStats: Bogus Blocked Damage value found, %d\n " , nAmount);
829
+ DevMsg (" CTFGameStats: bogus blocked damage value found, %d\n " , nAmount);
830
830
}
831
831
#else
832
832
DevMsg ( " CTFGameStats: bogus blocked damage value of %d reported, ignoring\n " , nAmount );
@@ -1113,12 +1113,12 @@ void CTFGameStats::Event_PlayerDamage( CBasePlayer *pBasePlayer, const CTakeDama
1113
1113
{
1114
1114
if (tf_stats_bogus_return.GetBool ())
1115
1115
{
1116
- DevMsg (" CTFGameStats: Bogus Damage value found, %d, ignoring\n " , iDamageTaken);
1116
+ DevMsg (" CTFGameStats: bogus damage value found, %d, ignoring\n " , iDamageTaken);
1117
1117
return ;
1118
1118
}
1119
1119
else
1120
1120
{
1121
- DevMsg (" CTFGameStats: Bogus Damage value found, %d\n " , iDamageTaken);
1121
+ DevMsg (" CTFGameStats: bogus damage value found, %d\n " , iDamageTaken);
1122
1122
}
1123
1123
}
1124
1124
#endif
0 commit comments