Minor fix so no lag when token is picked up

upon receiving a new RaceXML when one has been recieved we no longer update the course. Just update tokens

#story[1245]
This commit is contained in:
William Muir
2017-09-12 16:37:29 +12:00
parent 1c343ec02d
commit 6a4547f3f9
2 changed files with 3 additions and 4 deletions
@@ -718,8 +718,7 @@ public class RaceViewController extends Thread implements ImportantAnnotationDel
// }
}
public void updateRaceData (RaceXMLData raceData) {
gameView.updateBorder(raceData.getCourseLimit());
public void updateTokens(RaceXMLData raceData) {
gameView.updateTokens(raceData.getTokens());
}