Skip to content

Commit

Permalink
Fixed faulty implementation of MirkoObsessiveTheorist
Browse files Browse the repository at this point in the history
  • Loading branch information
brunofpinheiro committed Jan 20, 2025
1 parent 3e21e3f commit 8775ebb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Mage.Sets/src/mage/cards/m/MirkoObsessiveTheorist.java
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,6 @@ enum MirkoObsessiveTheoristPredicate implements ObjectSourcePlayerPredicate<Card
@Override
public boolean apply(ObjectSourcePlayer<Card> input, Game game) {
Permanent sourcePermanent = input.getSource().getSourcePermanentOrLKI(game);
return sourcePermanent != null && input.getObject().getPower().getValue() <= sourcePermanent.getPower().getValue();
return sourcePermanent != null && input.getObject().getPower().getValue() < sourcePermanent.getPower().getValue();
}
}

0 comments on commit 8775ebb

Please sign in to comment.