* Golgari Thug - Fixed that card in graveyard was not a mandatory target.

This commit is contained in:
LevelX2 2014-04-05 03:13:27 +02:00
parent 5af7a444d3
commit a4f73a9fde
3 changed files with 6 additions and 10 deletions

View file

@ -64,7 +64,7 @@ public class GolgariThug extends CardImpl<GolgariThug> {
// When Golgari Thug dies, put target creature card from your graveyard on top of your library.
Ability ability = new DiesTriggeredAbility(new PutOnLibraryTargetEffect(true));
ability.addTarget(new TargetCardInYourGraveyard(filter));
ability.addTarget(new TargetCardInYourGraveyard(filter, true));
this.addAbility(ability);
// Dredge 4
this.addAbility(new DredgeAbility(4));