* Lighthouse Chronologist - Removed custom classes.

This commit is contained in:
LevelX2 2015-10-07 08:18:35 +02:00
parent 537b1f15be
commit 3a426e3cd8
2 changed files with 19 additions and 71 deletions

View file

@ -33,7 +33,7 @@ import mage.abilities.condition.Condition;
import mage.game.Game;
public class NotMyTurnCondition implements Condition {
private static final NotMyTurnCondition fInstance = new NotMyTurnCondition();
public static Condition getInstance() {
@ -48,4 +48,9 @@ public class NotMyTurnCondition implements Condition {
}
return false;
}
@Override
public String toString() {
return "if it's not your turn";
}
}