Skip to content

Commit

Permalink
Mirko, Obsessive Theorist - fixed wrong power checking (#13249)
Browse files Browse the repository at this point in the history
  • Loading branch information
brunofpinheiro authored Jan 25, 2025
1 parent 92a6f39 commit 0e9730c
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 0e9730c

Please sign in to comment.