mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
[C16] Trasios, Triton Hero
Fixed that ability was not correctly putting reveled lands into play tapped.
This commit is contained in:
parent
5cfec72d81
commit
b0f85a8d6a
1 changed files with 3 additions and 2 deletions
|
@ -27,7 +27,6 @@
|
|||
*/
|
||||
package mage.cards.t;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.MageInt;
|
||||
import mage.MageObject;
|
||||
import mage.abilities.Ability;
|
||||
|
@ -46,6 +45,8 @@ import mage.constants.Zone;
|
|||
import mage.game.Game;
|
||||
import mage.players.Player;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author LevelX2
|
||||
|
@ -111,7 +112,7 @@ class ThrasiosTritonHeroEffect extends OneShotEffect {
|
|||
cards.add(card);
|
||||
controller.revealCards(sourceObject.getName(), cards, game);
|
||||
if (card.getCardType().contains(CardType.LAND)) {
|
||||
controller.moveCards(card, Zone.BATTLEFIELD, source, game);
|
||||
controller.moveCards(card, Zone.BATTLEFIELD, source, game, true, false, false, null);
|
||||
} else {
|
||||
controller.drawCards(1, game);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue