Standardizing the test player names.

This commit is contained in:
marcins78@gmail.com
2011-08-30 12:43:33 +00:00
parent 2f728eb902
commit d8ea15c9d8

View File

@@ -45,8 +45,8 @@ public class ServerResource {
private void createGame(String gameId) {
LotroGameParticipant[] participants = new LotroGameParticipant[2];
participants[0] = new LotroGameParticipant("marcin", _lotroServer.getParticipantDeck("marcin"));
participants[1] = new LotroGameParticipant("ryan", _lotroServer.getParticipantDeck("ryan"));
participants[0] = new LotroGameParticipant("Player1", _lotroServer.getParticipantDeck("Player1"));
participants[1] = new LotroGameParticipant("Player2", _lotroServer.getParticipantDeck("Player2"));
_lotroServer.createNewGame(new DefaultLotroFormat(true), participants, gameId);
_lotroServer.getGameById(gameId).startGame();