Skip to content

Commit

Permalink
Remove incorrect restriction to active player only from Osteomancer A…
Browse files Browse the repository at this point in the history
…dept.
  • Loading branch information
Grath committed Sep 7, 2024
1 parent f5d1567 commit 3738165
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Mage.Sets/src/mage/cards/o/OsteomancerAdept.java
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,7 @@ public OsteomancerAdeptEffect copy() {

@Override
public boolean applies(UUID objectId, Ability source, UUID affectedControllerId, Game game) {
if (!source.isControlledBy(affectedControllerId)
|| !game.isActivePlayer(affectedControllerId)) {
if (!source.isControlledBy(affectedControllerId)) {
return false;
}
Card card = game.getCard(objectId);
Expand Down

0 comments on commit 3738165

Please sign in to comment.