Remove tourny restrictions

This commit is contained in:
ChocoTaco 2022-02-15 19:41:11 -05:00
parent 640af0ad53
commit d976900efc
4 changed files with 11 additions and 11 deletions

View file

@ -466,7 +466,7 @@ function CTFGame::playerTouchEnemyFlag(%game, %player, %flag)
if (%startStalemate)
%game.stalemateSchedule = %game.schedule(%game.stalemateTimeMS, beginStalemate);
if($Host::ClassicEvoStats && !$Host::TournamentMode)
if($Host::ClassicEvoStats)
{
$stats::grabs[%client]++;
if($stats::grabs[%client] > $stats::grabs_counter)
@ -480,7 +480,7 @@ function CTFGame::playerTouchEnemyFlag(%game, %player, %flag)
%game.totalFlagHeldTime[%flag] = getSimTime();
}
if($Host::ClassicEvoStats && !%player.flagStatsWait && !$Host::TournamentMode)
if($Host::ClassicEvoStats && !%player.flagStatsWait)
{
// get the grab speed
%grabspeed = mFloor(VectorLen(setWord(%player.getVelocity(), 2, 0)) * 3.6);