fixed Venomous Hierophant not milling

This commit is contained in:
Evan Kranzler 2020-01-12 21:32:58 -05:00
parent 6691306219
commit de59888456

View file

@ -2,7 +2,7 @@ package mage.cards.v;
import mage.MageInt;
import mage.abilities.common.EntersBattlefieldTriggeredAbility;
import mage.abilities.effects.common.PutLibraryIntoGraveTargetEffect;
import mage.abilities.effects.common.PutTopCardOfLibraryIntoGraveControllerEffect;
import mage.abilities.keyword.DeathtouchAbility;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
@ -28,7 +28,7 @@ public final class VenomousHierophant extends CardImpl {
this.addAbility(DeathtouchAbility.getInstance());
// When Venomous Hierophant enters the battlefield, put the top three cards of your library into your graveyard.
this.addAbility(new EntersBattlefieldTriggeredAbility(new PutLibraryIntoGraveTargetEffect(3)));
this.addAbility(new EntersBattlefieldTriggeredAbility(new PutTopCardOfLibraryIntoGraveControllerEffect(3)));
}
private VenomousHierophant(final VenomousHierophant card) {