Hand size is based on format.

This commit is contained in:
marcins78
2014-06-18 14:45:49 +00:00
parent 4b0489657c
commit 2ee404c528
2 changed files with 3 additions and 3 deletions

View File

@@ -25,7 +25,7 @@ public class PlayStartingFellowshipGameProcess implements GameProcess {
_nextProcess = new PlayerPlaysStartingFellowshipGameProcess(nextPlayer, new PlayStartingFellowshipGameProcess(_playOrder, _firstPlayer));
} else {
_nextProcess = new PlayersDrawEightCardsGameProcess(_firstPlayer);
_nextProcess = new PlayersDrawStartingHandGameProcess(_firstPlayer);
}
}

View File

@@ -6,11 +6,11 @@ import com.gempukku.lotro.game.state.LotroGame;
import com.gempukku.lotro.logic.timing.processes.GameProcess;
import com.gempukku.lotro.logic.timing.processes.turn.BetweenTurnsProcess;
public class PlayersDrawEightCardsGameProcess implements GameProcess {
public class PlayersDrawStartingHandGameProcess implements GameProcess {
private String _firstPlayer;
private GameProcess _followingGameProcess;
public PlayersDrawEightCardsGameProcess(String firstPlayer) {
public PlayersDrawStartingHandGameProcess(String firstPlayer) {
_firstPlayer = firstPlayer;
}