mirror of
https://github.com/correl/mage.git
synced 2025-01-12 19:25:44 +00:00
Fixed bug of Court Street Denizen.
This commit is contained in:
parent
c392ee3146
commit
20298836d2
1 changed files with 3 additions and 1 deletions
|
@ -31,6 +31,7 @@ import java.util.UUID;
|
|||
import mage.Constants;
|
||||
import mage.Constants.CardType;
|
||||
import mage.Constants.Rarity;
|
||||
import mage.Constants.TargetController;
|
||||
import mage.MageInt;
|
||||
import mage.ObjectColor;
|
||||
import mage.abilities.Ability;
|
||||
|
@ -50,11 +51,12 @@ import mage.target.common.TargetCreaturePermanent;
|
|||
*/
|
||||
public class CourtStreetDenizen extends CardImpl<CourtStreetDenizen> {
|
||||
|
||||
private static final FilterPermanent filter = new FilterPermanent("another white creature");
|
||||
private static final FilterPermanent filter = new FilterCreaturePermanent("another white creature");
|
||||
private static final FilterCreaturePermanent filterOpponentCreature = new FilterCreaturePermanent("creature an opponent controls");
|
||||
static {
|
||||
filter.add(new AnotherPredicate());
|
||||
filter.add(new ColorPredicate(ObjectColor.WHITE));
|
||||
filter.add(new ControllerPredicate(TargetController.YOU));
|
||||
filterOpponentCreature.add(new ControllerPredicate(Constants.TargetController.OPPONENT));
|
||||
}
|
||||
public CourtStreetDenizen(UUID ownerId) {
|
||||
|
|
Loading…
Reference in a new issue