diff --git a/Mage.Sets/src/mage/cards/b/BranchingEvolution.java b/Mage.Sets/src/mage/cards/b/BranchingEvolution.java index ae3f1215cb7..b88ed064f56 100644 --- a/Mage.Sets/src/mage/cards/b/BranchingEvolution.java +++ b/Mage.Sets/src/mage/cards/b/BranchingEvolution.java @@ -43,7 +43,7 @@ class BranchingEvolutionEffect extends ReplacementEffectImpl { BranchingEvolutionEffect() { super(Duration.WhileOnBattlefield, Outcome.BoostCreature, false); staticText = "If one or more +1/+1 counters would be put on a creature you control, " + - "twice that many +1/+1 counters are put on it instead"; + "twice that many +1/+1 counters are put on that creature instead"; } private BranchingEvolutionEffect(final BranchingEvolutionEffect effect) { diff --git a/Mage.Sets/src/mage/cards/d/DireBlunderbuss.java b/Mage.Sets/src/mage/cards/d/DireBlunderbuss.java index ea554e8d872..77e26631179 100644 --- a/Mage.Sets/src/mage/cards/d/DireBlunderbuss.java +++ b/Mage.Sets/src/mage/cards/d/DireBlunderbuss.java @@ -62,7 +62,7 @@ class DireBlunderbussGainAbilityEffect extends ContinuousEffectImpl { DireBlunderbussGainAbilityEffect() { super(Duration.WhileOnBattlefield, Layer.AbilityAddingRemovingEffects_6, SubLayer.NA, Outcome.AddAbility); staticText = "and has \"Whenever this creature attacks, you may sacrifice an artifact other than {this}. " - + "When you do, this creature deals damage equal to its power to target creature\""; + + "When you do, this creature deals damage equal to its power to target creature.\""; } protected DireBlunderbussGainAbilityEffect(final DireBlunderbussGainAbilityEffect effect) { diff --git a/Mage/src/main/java/mage/abilities/effects/common/LookLibraryAndPickControllerEffect.java b/Mage/src/main/java/mage/abilities/effects/common/LookLibraryAndPickControllerEffect.java index 1fc2a693a34..e3d095913dd 100644 --- a/Mage/src/main/java/mage/abilities/effects/common/LookLibraryAndPickControllerEffect.java +++ b/Mage/src/main/java/mage/abilities/effects/common/LookLibraryAndPickControllerEffect.java @@ -201,7 +201,7 @@ public class LookLibraryAndPickControllerEffect extends LookLibraryControllerEff if (revealPickedCards) { sb.append("and put "); sb.append(plural ? "them " : "it "); - } else if (putPickedCards == PutCards.TOP_ANY) { + } else if (putPickedCards == PutCards.TOP_ANY && (numberOfCards instanceof StaticValue)) { sb.append("back "); } sb.append(putPickedCards.getMessage(false, plural));