Skip to content

Commit

Permalink
forgot to change a leveltime variable to servertime, when fixing lagg…
Browse files Browse the repository at this point in the history
…ed records
  • Loading branch information
j0ki committed Nov 1, 2011
1 parent 685799f commit c7adcd4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions racesow/progs/gametypes/racesow/player.as
Expand Up @@ -745,8 +745,8 @@ class Racesow_Player

} else if ( this.isRacing() )
{
this.racingTime += levelTime - this.race.getStartTime();
this.racingTimeSinceLastRace += levelTime - this.race.getStartTime();
this.racingTime += this.race.getCurrentTime();
this.racingTimeSinceLastRace += this.race.getCurrentTime();
this.sendMessage( this.race.checkPointsString );
}

Expand Down

0 comments on commit c7adcd4

Please sign in to comment.