[ZNR] fixed Taborax, Hope's Demise not detecting a cleric correctly

This commit is contained in:
Evan Kranzler 2020-09-16 21:07:09 -04:00
parent aef55e50cd
commit 73b364ceff

View file

@ -99,7 +99,7 @@ class TaboraxHopesDemiseEffect extends OneShotEffect {
@Override
public boolean apply(Game game, Ability source) {
Permanent permanent = game.getPermanent(getTargetPointer().getFirst(game, source));
Permanent permanent = game.getPermanentOrLKIBattlefield(getTargetPointer().getFirst(game, source));
if (permanent == null || !permanent.hasSubtype(SubType.CLERIC, game)) {
return false;
}