diff --git a/Mage.Sets/src/mage/sets/mirrodin/CrystalShard.java b/Mage.Sets/src/mage/sets/mirrodin/CrystalShard.java index 0523673c866..b5d00bc2846 100644 --- a/Mage.Sets/src/mage/sets/mirrodin/CrystalShard.java +++ b/Mage.Sets/src/mage/sets/mirrodin/CrystalShard.java @@ -105,7 +105,7 @@ class CrystalShardEffect extends OneShotEffect { cost.clearPaid(); final StringBuilder sb = new StringBuilder("Pay {1} otherwise ").append(targetCreature.getName()).append(" will be returned to its owner's hand)"); if (player.chooseUse(Outcome.Benefit, sb.toString(), game)) { - cost.pay(source, game, targetCreature.getControllerId(), targetCreature.getControllerId(), true); + cost.pay(source, game, targetCreature.getControllerId(), targetCreature.getControllerId(), false); } if (!cost.isPaid()) { return targetCreature.moveToZone(Zone.HAND, source.getSourceId(), game, true);