fixed Oust not working correctly

This commit is contained in:
Evan Kranzler 2018-06-14 13:39:21 -04:00
parent d466d7f34c
commit 1dc249cec0

View file

@ -1,4 +1,3 @@
package mage.cards.o;
import java.util.UUID;
@ -62,7 +61,7 @@ class OustEffect extends OneShotEffect {
if (owner == null || controller == null) {
return false;
}
owner.getLibrary().putCardToTopXPos(permanent, 2, game);
owner.putCardOnTopXOfLibrary(permanent, game, source, 2);
controller.gainLife(3, game, source);
}
return true;