Fixed Tiny Leaders Duel Type

Fixed missing class access level for TinyLeadersDuelType
This commit is contained in:
JRHerlehy 2015-03-01 01:34:49 -08:00
parent 6e95e5ef70
commit 983cb571e7
5 changed files with 9 additions and 6 deletions

5
.gitignore vendored
View file

@ -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
*.netbeans_automatic_build
*.txt
Mage.Client/serverlist.txt
Mage.Client/serverlist.txt

View file

@ -1,6 +1,6 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
@ -18,7 +18,7 @@
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>mage</artifactId>
<version>1.3.0</version>
<version>${project.version}</version>
</dependency>
</dependencies>

View file

@ -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);

View file

@ -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";

View file

@ -17,7 +17,7 @@
<modules>
<module>Mage.Deck.Constructed</module>
<module>Mage.Deck.Limited</module>
<module>Mage.Game.CommanderDuel</module>
<module>Mage.Game.CommanderDuel</module>
<module>Mage.Game.CommanderFreeForAll</module>
<module>Mage.Game.FreeForAll</module>
<module>Mage.Game.TwoPlayerDuel</module>