mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 13:02:06 -08:00
fixed phased-out permanents not being invalid targets upon resolution
This commit is contained in:
parent
1c258c6b9f
commit
587e8a75ef
1 changed files with 1 additions and 1 deletions
|
|
@ -73,7 +73,7 @@ public class FilterPermanent extends FilterObject<Permanent> implements FilterIn
|
|||
|
||||
@Override
|
||||
public boolean match(Permanent permanent, UUID sourceId, UUID playerId, Game game) {
|
||||
if (!this.match(permanent, game)) {
|
||||
if (!permanent.isPhasedIn() || !this.match(permanent, game)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue