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

Little fix on filter

This commit is contained in:
Oleg Agafonov 2018-01-13 14:58:43 +04:00
parent 393f8dc9f4
commit 9a0b48e9b7

View file

@ -59,7 +59,7 @@ public class TargetDiscard extends TargetCard {
}
public TargetDiscard(int minNumTargets, int maxNumTargets, FilterCard filter, UUID playerId) {
super(minNumTargets, maxNumTargets, Zone.HAND, filter);
super(minNumTargets, maxNumTargets, Zone.HAND, filter.copy());
this.filter.add(new OwnerIdPredicate(playerId));
this.playerId = playerId;
this.targetName = this.filter.getMessage() + " to discard";