mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 21:29:17 -08:00
[IKO] added workaround for Yorion, Sky Nomad not being usable in a two player match with limited set as deck type
This commit is contained in:
parent
5e2738aab9
commit
4874ad31c1
1 changed files with 1 additions and 1 deletions
|
|
@ -17,7 +17,7 @@ public class TwoPlayerMatch extends MatchImpl {
|
|||
@Override
|
||||
public void startGame() throws GameException {
|
||||
Mulligan mulligan = options.getMulliganType().getMulligan(options.getFreeMulligans());
|
||||
TwoPlayerDuel game = new TwoPlayerDuel(options.getAttackOption(), options.getRange(), mulligan, 20, options.isLimited() ? 40 : 60);
|
||||
TwoPlayerDuel game = new TwoPlayerDuel(options.getAttackOption(), options.getRange(), mulligan, 20, options.isLimited() || "Limited".equals(options.getDeckType()) ? 40 : 60);
|
||||
// Sets a start message about the match score
|
||||
game.setStartMessage(this.createGameStartMessage());
|
||||
initGame(game);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue