From 95d749648e3d8594567e7cf00d3b3034a94ef40f Mon Sep 17 00:00:00 2001
From: jeffwadsworth <jeff@delmarus.com>
Date: Wed, 4 Dec 2019 16:25:14 -0600
Subject: [PATCH] - Fixed #6067

---
 Mage.Sets/src/mage/cards/v/VolrathTheShapestealer.java | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Mage.Sets/src/mage/cards/v/VolrathTheShapestealer.java b/Mage.Sets/src/mage/cards/v/VolrathTheShapestealer.java
index 736144713d..880e9a64bc 100644
--- a/Mage.Sets/src/mage/cards/v/VolrathTheShapestealer.java
+++ b/Mage.Sets/src/mage/cards/v/VolrathTheShapestealer.java
@@ -48,7 +48,7 @@ public final class VolrathTheShapestealer extends CardImpl {
 
         // At the beginning of combat on your turn, put a -1/-1 counter on up to one target creature.
         Ability ability = new BeginningOfCombatTriggeredAbility(
-                new AddCountersTargetEffect(CounterType.M1M1.createInstance()), TargetController.YOU, false
+                new AddCountersTargetEffect(CounterType.M1M1.createInstance(), Outcome.Detriment), TargetController.YOU, false
         );
         ability.addTarget(new TargetCreaturePermanent(0, 1));
         this.addAbility(ability);
@@ -73,8 +73,8 @@ class VolrathTheShapestealerEffect extends OneShotEffect {
 
     VolrathTheShapestealerEffect() {
         super(Outcome.Copy);
-        staticText = "Until your next turn, {this} becomes a copy of target creature with a counter on it, " +
-                "except it's 7/5 and it has this ability.";
+        staticText = "Until your next turn, {this} becomes a copy of target creature with a counter on it, "
+                + "except it's 7/5 and it has this ability.";
     }
 
     private VolrathTheShapestealerEffect(final VolrathTheShapestealerEffect effect) {