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

* Moritte of the Frost - fixed that it can copy opponent's permanents too (fixes );

This commit is contained in:
Oleg Agafonov 2021-09-05 01:49:14 +04:00
parent 5f70b92278
commit b10079d090

View file

@ -14,6 +14,7 @@ import mage.constants.SubType;
import mage.constants.SuperType;
import mage.counters.CounterType;
import mage.filter.FilterPermanent;
import mage.filter.common.FilterControlledPermanent;
import mage.game.Game;
import mage.util.functions.CopyApplier;
@ -24,7 +25,7 @@ import java.util.UUID;
*/
public final class MoritteOfTheFrost extends CardImpl {
private static final FilterPermanent filter = new FilterPermanent("a permanent you control");
private static final FilterPermanent filter = new FilterControlledPermanent("a permanent you control");
public MoritteOfTheFrost(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{G}{U}{U}");