Hand size is based on format.
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user