diff --git a/Classic/scripts/CTFGame.cs b/Classic/scripts/CTFGame.cs index 396827a..69c68f6 100644 --- a/Classic/scripts/CTFGame.cs +++ b/Classic/scripts/CTFGame.cs @@ -1179,6 +1179,8 @@ function CTFGame::checkScoreLimit(%game, %team) function CTFGame::awardScoreFlagReturn(%game, %cl, %perc) { + %cl.flagReturns++; //give flagreturn stat + // --------------------------------------------------- // z0dd - ZOD, 9/29/02. Removed T2 demo code from here if (%game.SCORE_PER_FLAG_RETURN != 0) diff --git a/Classic/scripts/SCtFGame.cs b/Classic/scripts/SCtFGame.cs index 2781d55..70b8ddf 100644 --- a/Classic/scripts/SCtFGame.cs +++ b/Classic/scripts/SCtFGame.cs @@ -1254,6 +1254,8 @@ function SCtFGame::checkScoreLimit(%game, %team) function SCtFGame::awardScoreFlagReturn(%game, %cl, %perc) { + %cl.flagReturns++; //give flagreturn stat + if (%game.SCORE_PER_FLAG_RETURN != 0) { %pts = mfloor( %game.SCORE_PER_FLAG_RETURN * (%perc/100) );