Fixed bug with Ghost Quarter putting the land into play of the owner of the Ghost Quarter

This commit is contained in:
honaker215 2011-11-02 22:10:52 -04:00
parent 7c69bc6f30
commit f0e089217c

View file

@ -104,7 +104,7 @@ class GhostQuarterEffect extends OneShotEffect<GhostQuarterEffect> {
if (player.searchLibrary(target, game)) {
Card card = player.getLibrary().remove(target.getFirstTarget(), game);
if (card != null) {
card.putOntoBattlefield(game, Zone.HAND, source.getId(), source.getControllerId());
card.putOntoBattlefield(game, Zone.HAND, source.getId(), permanent.getControllerId());
}
}
player.shuffleLibrary(game);