From c6409c34494bfa0d8b94f4e569e724daf415b11d Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Wed, 30 Jul 2014 11:16:58 +0200 Subject: [PATCH] * Hallowed Burial - Fixed exception bug of spell effect. --- Mage.Sets/src/mage/sets/eventide/HallowedBurial.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mage.Sets/src/mage/sets/eventide/HallowedBurial.java b/Mage.Sets/src/mage/sets/eventide/HallowedBurial.java index 9f36c170b67..62070b0006d 100644 --- a/Mage.Sets/src/mage/sets/eventide/HallowedBurial.java +++ b/Mage.Sets/src/mage/sets/eventide/HallowedBurial.java @@ -87,8 +87,8 @@ class HallowedBurialEffect extends OneShotEffect { public boolean apply(Game game, Ability source) { Player controller = game.getPlayer(source.getControllerId()); if (controller != null) { - for (Permanent creature : game.getBattlefield().getActivePermanents(new FilterCreaturePermanent(), source.getSourceId(), game)) { - creature.moveToZone(Zone.LIBRARY, source.getSourceId(), game, false); + for (Permanent creature : game.getBattlefield().getActivePermanents(new FilterCreaturePermanent(), controller.getId(), source.getSourceId(), game)) { + controller.moveCardToLibraryWithInfo(creature, source.getSourceId(), game, Zone.BATTLEFIELD, false, true); } return true; }