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 #8214);
This commit is contained in:
parent
5f70b92278
commit
b10079d090
1 changed files with 2 additions and 1 deletions
|
@ -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}");
|
||||
|
|
Loading…
Add table
Reference in a new issue