mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 13:32:06 -08:00
[TDM] fix Call the Spirit Dragons not working
This commit is contained in:
parent
998e4ca436
commit
391f0e256b
2 changed files with 2 additions and 1 deletions
|
|
@ -63,6 +63,7 @@ class CallTheSpiritDragonsEffect extends OneShotEffect {
|
|||
SubType.DRAGON, color.getDescription() + " Dragon you control"
|
||||
);
|
||||
filter.add(new ColorPredicate(color));
|
||||
filters.add(filter);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ public class ObjectColor implements Serializable, Copyable<ObjectColor>, Compara
|
|||
public static final ObjectColor GREEN = new ObjectColor("G");
|
||||
|
||||
public static final ObjectColor COLORLESS = new ObjectColor();
|
||||
private static final List<ObjectColor>allColors= Arrays.asList(WHITE,BLUE,BLACK,RED,GREEN);
|
||||
private static final List<ObjectColor> allColors = Arrays.asList(WHITE, BLUE, BLACK, RED, GREEN);
|
||||
private boolean white;
|
||||
private boolean blue;
|
||||
private boolean black;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue