mirror of
https://github.com/magefree/mage.git
synced 2026-01-10 04:42:07 -08:00
Fix Illithid Harvester assigning Horror subtype to unturnable TDFCs
This commit is contained in:
parent
4791bbb81f
commit
72e30f1574
1 changed files with 3 additions and 1 deletions
|
|
@ -106,7 +106,9 @@ class IllithidHarvesterEffect extends OneShotEffect {
|
|||
Predicate<Permanent> pred = new PermanentIdPredicate(UUID.randomUUID());
|
||||
for (Target target : source.getTargets()) {
|
||||
for (UUID targetId : target.getTargets()) {
|
||||
pred = Predicates.or(pred, new PermanentIdPredicate(targetId));
|
||||
if (!game.getPermanent(targetId).isTransformable()) {
|
||||
pred = Predicates.or(pred, new PermanentIdPredicate(targetId));
|
||||
}
|
||||
}
|
||||
}
|
||||
FilterCreaturePermanent filter = new FilterCreaturePermanent();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue