fixed some test failures

This commit is contained in:
Evan Kranzler 2020-06-19 19:13:06 -04:00
parent 271b8d06f4
commit 16f7e401f7
2 changed files with 4 additions and 4 deletions

View file

@ -33,7 +33,7 @@ public final class TomeAnima extends CardImpl {
this.addAbility(new SimpleStaticAbility(new ConditionalContinuousEffect(
new GainAbilitySourceEffect(new CantBeBlockedSourceAbility(), Duration.WhileOnBattlefield),
TomeAnimaCondition.instance,
"{this} cant be blocked as long as youve drawn two or more cards this turn"
"{this} can't be blocked as long as you've drawn two or more cards this turn"
)), new CardsDrawnThisTurnWatcher());
}

View file

@ -1,7 +1,5 @@
package mage.cards.t;
import java.util.UUID;
import mage.MageObject;
import mage.abilities.Ability;
import mage.abilities.effects.OneShotEffect;
@ -15,6 +13,8 @@ import mage.constants.Outcome;
import mage.game.Game;
import mage.players.Player;
import java.util.UUID;
/**
* @author arcox
*/
@ -42,7 +42,7 @@ class TrackDownEffect extends OneShotEffect {
public TrackDownEffect() {
super(Outcome.DrawCard);
this.staticText = "then reveal the top card of your library. If its a creature or land card, draw a card";
this.staticText = "then reveal the top card of your library. If it's a creature or land card, draw a card";
}
public TrackDownEffect(final TrackDownEffect effect) {