From d8ea15c9d8d786fa771e7b014758b9794d27a1d5 Mon Sep 17 00:00:00 2001 From: "marcins78@gmail.com" Date: Tue, 30 Aug 2011 12:43:33 +0000 Subject: [PATCH] Standardizing the test player names. --- .../main/java/com/gempukku/lotro/server/ServerResource.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gemp-lotr/gemp-lotr-web/src/main/java/com/gempukku/lotro/server/ServerResource.java b/gemp-lotr/gemp-lotr-web/src/main/java/com/gempukku/lotro/server/ServerResource.java index 253c38220..730129281 100644 --- a/gemp-lotr/gemp-lotr-web/src/main/java/com/gempukku/lotro/server/ServerResource.java +++ b/gemp-lotr/gemp-lotr-web/src/main/java/com/gempukku/lotro/server/ServerResource.java @@ -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();