forked from External/mage
Fixed bug with Ghost Quarter putting the land into play of the owner of the Ghost Quarter
This commit is contained in:
parent
7c69bc6f30
commit
f0e089217c
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue