mirror of
https://github.com/correl/mage.git
synced 2025-01-12 03:00:13 +00:00
Fixed Hostage Taker exiling even when no longer on the battlefield (fixes #4844)
This commit is contained in:
parent
64be0bc568
commit
163c8be934
1 changed files with 1 additions and 1 deletions
|
@ -119,7 +119,7 @@ class HostageTakerExileEffect extends OneShotEffect {
|
|||
@Override
|
||||
public boolean apply(Game game, Ability source) {
|
||||
Permanent card = game.getPermanent(getTargetPointer().getFirst(game, source));
|
||||
Permanent permanent = game.getPermanentOrLKIBattlefield(source.getSourceId());
|
||||
Permanent permanent = game.getPermanent(source.getSourceId());
|
||||
if (permanent != null && card != null) {
|
||||
Player controller = game.getPlayer(card.getControllerId());
|
||||
if (controller != null) {
|
||||
|
|
Loading…
Reference in a new issue