diff --git a/Mage.Sets/src/mage/sets/kaladesh/CombustibleGearhulk.java b/Mage.Sets/src/mage/sets/kaladesh/CombustibleGearhulk.java index d5645ae139..228d426b2c 100644 --- a/Mage.Sets/src/mage/sets/kaladesh/CombustibleGearhulk.java +++ b/Mage.Sets/src/mage/sets/kaladesh/CombustibleGearhulk.java @@ -99,7 +99,7 @@ class CombustibleGearhulkEffect extends OneShotEffect { @Override public boolean apply(Game game, Ability source) { Player controller = game.getPlayer(source.getControllerId()); - Permanent sourcePermanent = game.getPermanent(source.getSourceId()); + Permanent sourcePermanent = game.getPermanentOrLKIBattlefield(source.getSourceId()); if (controller != null && sourcePermanent != null) { UUID opponentId; if (game.getOpponents(controller.getId()).size() == 1) {