diff --git a/Mage.Sets/src/mage/cards/t/TheTrueScriptures.java b/Mage.Sets/src/mage/cards/t/TheTrueScriptures.java index e251a01e095..eee0ca95a36 100644 --- a/Mage.Sets/src/mage/cards/t/TheTrueScriptures.java +++ b/Mage.Sets/src/mage/cards/t/TheTrueScriptures.java @@ -91,9 +91,12 @@ enum TheTrueScripturesAdjuster implements TargetAdjuster { continue; } FilterPermanent filter = new FilterCreatureOrPlaneswalkerPermanent( - "creature or planswalker controlled by " + player.getName() + "creature or planeswalker controlled by " + player.getName() ); filter.add(new ControllerIdPredicate(playerId)); + if (game.getBattlefield().count(filter, ability.getControllerId(), ability, game) == 0) { + continue; + } ability.addTarget(new TargetPermanent(0, 1, filter)); } }