1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-10 09:11:04 -09:00

[AER] Fix Consulate Crackdown to use TargetController.OPPONENT instead of TargetController.NOT_YOU

This commit is contained in:
JRHerlehy 2016-12-13 15:27:55 -08:00
parent 87ff07678d
commit 2ee5f223fe

View file

@ -77,7 +77,7 @@ class ConsulateCracksownExileEffect extends OneShotEffect {
private static final FilterArtifactPermanent filter = new FilterArtifactPermanent("artifacts your opponents control"); private static final FilterArtifactPermanent filter = new FilterArtifactPermanent("artifacts your opponents control");
static { static {
filter.add(new ControllerPredicate(TargetController.NOT_YOU)); filter.add(new ControllerPredicate(TargetController.OPPONENT));
} }
public ConsulateCracksownExileEffect() { public ConsulateCracksownExileEffect() {