renamed 2nd mulligan class

This commit is contained in:
Maxmtg
2013-05-19 20:48:57 +00:00
parent 5246badd68
commit 0936352729
3 changed files with 4 additions and 4 deletions

View File

@@ -43,7 +43,7 @@ import forge.view.ButtonUtil;
* @author Forge
* @version $Id: InputMulligan.java 20698 2013-04-01 09:56:12Z Max mtg $
*/
public class InputPartialParisMulligan extends InputBase {
public class InputMulliganPartialParis extends InputBase {
/** Constant <code>serialVersionUID=-8112954303001155622L</code>. */
private static final long serialVersionUID = -8112954303001155622L;
@@ -53,7 +53,7 @@ public class InputPartialParisMulligan extends InputBase {
private final List<Card> lastExiled = new ArrayList<Card>();
private final List<Card> allExiled = new ArrayList<Card>();
public InputPartialParisMulligan(MatchController match0, Player humanPlayer) {
public InputMulliganPartialParis(MatchController match0, Player humanPlayer) {
super(humanPlayer);
match = match0;
game = match.getCurrentGame();

View File

@@ -127,7 +127,7 @@ public class InputQueue extends MyObservable implements java.io.Serializable {
GameAge age = game.getAge();
if ( age == GameAge.Mulligan ) {
Player human = Singletons.getControl().getPlayer();
return game.getType() == GameType.Commander ? new InputPartialParisMulligan(match, human) : new InputMulligan(match, human);
return game.getType() == GameType.Commander ? new InputMulliganPartialParis(match, human) : new InputMulligan(match, human);
}
if ( age != GameAge.Play )