mirror of
https://github.com/magefree/mage.git
synced 2025-12-21 02:52:02 -08:00
[FIN] fix Gilgamesh, Master-at-Arms allowing any permanent to be attached (fixes #13823)
This commit is contained in:
parent
2e9660fec8
commit
42e5c09f35
1 changed files with 1 additions and 1 deletions
|
|
@ -163,7 +163,7 @@ class GilgameshMasterAtArmsAttachEffect extends OneShotEffect {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
FilterPermanent filterPermanent = new FilterPermanent("Equipment");
|
FilterPermanent filterPermanent = new FilterPermanent("Equipment");
|
||||||
filter.add(new PermanentReferenceInCollectionPredicate(permanents, game));
|
filterPermanent.add(new PermanentReferenceInCollectionPredicate(permanents, game));
|
||||||
return Optional
|
return Optional
|
||||||
.of(new TargetPermanent(0, 1, filterPermanent, true))
|
.of(new TargetPermanent(0, 1, filterPermanent, true))
|
||||||
.map(t -> {
|
.map(t -> {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue