mirror of
https://github.com/correl/mage.git
synced 2025-01-13 11:01:58 +00:00
[ZNR] fixed Taborax, Hope's Demise not detecting a cleric correctly
This commit is contained in:
parent
aef55e50cd
commit
73b364ceff
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue