mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
fixed Oust not working correctly
This commit is contained in:
parent
d466d7f34c
commit
1dc249cec0
1 changed files with 1 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue