From 983cb571e7892d79b0bc45eb5759fcd797de1186 Mon Sep 17 00:00:00 2001 From: JRHerlehy Date: Sun, 1 Mar 2015 01:34:49 -0800 Subject: [PATCH] Fixed Tiny Leaders Duel Type Fixed missing class access level for TinyLeadersDuelType --- .gitignore | 5 ++++- Mage.Server.Plugins/Mage.Game.TinyLeadersDuel/pom.xml | 4 ++-- .../src/mage/game/TinyLeadersDuelMatch.java | 2 +- .../src/mage/game/TinyLeadersDuelType.java | 2 +- Mage.Server.Plugins/pom.xml | 2 +- 5 files changed, 9 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index 25ca0b875c2..77d9061c6ab 100644 --- a/.gitignore +++ b/.gitignore @@ -84,4 +84,7 @@ Mage.Server.Plugins/Mage.Draft.8PlayerBooster/target /Mage.Server/config/ai.please.cast.this.txt /Mage.Stats/target/ /Utils/*_unimplemented.txt -*.netbeans_automatic_build \ No newline at end of file +*.netbeans_automatic_build +*.txt +Mage.Client/serverlist.txt +Mage.Client/serverlist.txt \ No newline at end of file diff --git a/Mage.Server.Plugins/Mage.Game.TinyLeadersDuel/pom.xml b/Mage.Server.Plugins/Mage.Game.TinyLeadersDuel/pom.xml index 1d6f0d0a37f..ccf6b733a04 100644 --- a/Mage.Server.Plugins/Mage.Game.TinyLeadersDuel/pom.xml +++ b/Mage.Server.Plugins/Mage.Game.TinyLeadersDuel/pom.xml @@ -1,6 +1,6 @@ + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-4.0.0.xsd"> 4.0.0 @@ -18,7 +18,7 @@ ${project.groupId} mage - 1.3.0 + ${project.version} diff --git a/Mage.Server.Plugins/Mage.Game.TinyLeadersDuel/src/mage/game/TinyLeadersDuelMatch.java b/Mage.Server.Plugins/Mage.Game.TinyLeadersDuel/src/mage/game/TinyLeadersDuelMatch.java index d5b9ada2d5a..6349384e7c1 100644 --- a/Mage.Server.Plugins/Mage.Game.TinyLeadersDuel/src/mage/game/TinyLeadersDuelMatch.java +++ b/Mage.Server.Plugins/Mage.Game.TinyLeadersDuel/src/mage/game/TinyLeadersDuelMatch.java @@ -49,7 +49,7 @@ public class TinyLeadersDuelMatch extends MatchImpl { TinyLeadersDuel game = new TinyLeadersDuel(options.getAttackOption(), options.getRange(), options.getFreeMulligans(), startLife); game.setStartMessage(this.createGameStartMessage()); - //"Tucking a Tiny Leader is legal + //Tucking a Tiny Leader is legal game.setAlsoLibrary(false); this.initGame(game); games.add(game); diff --git a/Mage.Server.Plugins/Mage.Game.TinyLeadersDuel/src/mage/game/TinyLeadersDuelType.java b/Mage.Server.Plugins/Mage.Game.TinyLeadersDuel/src/mage/game/TinyLeadersDuelType.java index 4c8055c8fb7..26d97bde138 100644 --- a/Mage.Server.Plugins/Mage.Game.TinyLeadersDuel/src/mage/game/TinyLeadersDuelType.java +++ b/Mage.Server.Plugins/Mage.Game.TinyLeadersDuel/src/mage/game/TinyLeadersDuelType.java @@ -34,7 +34,7 @@ import mage.game.match.MatchType; * * @author JRHerlehy */ -class TinyLeadersDuelType extends MatchType { +public class TinyLeadersDuelType extends MatchType { public TinyLeadersDuelType() { this.name = "Tiny Leaders Two Player Duel"; diff --git a/Mage.Server.Plugins/pom.xml b/Mage.Server.Plugins/pom.xml index eb8c3742aaf..5235f4a7a17 100644 --- a/Mage.Server.Plugins/pom.xml +++ b/Mage.Server.Plugins/pom.xml @@ -17,7 +17,7 @@ Mage.Deck.Constructed Mage.Deck.Limited - Mage.Game.CommanderDuel + Mage.Game.CommanderDuel Mage.Game.CommanderFreeForAll Mage.Game.FreeForAll Mage.Game.TwoPlayerDuel