diff --git a/Mage.Sets/src/mage/sets/eventide/HallowedBurial.java b/Mage.Sets/src/mage/sets/eventide/HallowedBurial.java index 9f36c170b6..62070b0006 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; }