mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-18 19:58:00 +00:00
- Fixed the AI hanging the game when trying to choose a source in absence of a creature in combat on the opponent's battlefield.
This commit is contained in:
@@ -61,7 +61,7 @@ public final class CardPredicates {
|
||||
return new Predicate<Card>() {
|
||||
@Override
|
||||
public boolean apply(final Card c) {
|
||||
return c.getOwner().equals(p);
|
||||
return p.equals(c.getOwner());
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user