diff --git a/Mage.Sets/src/mage/sets/oathofthegatewatch/SweepAway.java b/Mage.Sets/src/mage/sets/oathofthegatewatch/SweepAway.java index 050687c16fe..a8d7420325a 100644 --- a/Mage.Sets/src/mage/sets/oathofthegatewatch/SweepAway.java +++ b/Mage.Sets/src/mage/sets/oathofthegatewatch/SweepAway.java @@ -85,6 +85,8 @@ class SweepAwayEffect extends OneShotEffect { if (permanent.isAttacking()) { if (controller.chooseUse(Outcome.Neutral, "Put " + permanent.getIdName() + " on top of its owner's library (otherwise return to hand)?", source, game)) { new PutOnLibraryTargetEffect(true).apply(game, source); + } else { + new ReturnToHandTargetEffect(true).apply(game, source); } } else { new ReturnToHandTargetEffect(true).apply(game, source);