diff --git a/Mage.Sets/src/mage/cards/n/NyleaKeenEyed.java b/Mage.Sets/src/mage/cards/n/NyleaKeenEyed.java
index aadf9257a3..63fb63780c 100644
--- a/Mage.Sets/src/mage/cards/n/NyleaKeenEyed.java
+++ b/Mage.Sets/src/mage/cards/n/NyleaKeenEyed.java
@@ -92,7 +92,7 @@ class NyleaKeenEyedEffect extends OneShotEffect {
         if (card.isCreature()) {
             return player.moveCards(card, Zone.HAND, source, game);
         }
-        if (!player.chooseUse(outcome, "Put " + card.getName() + " into your graveyard?", source, game)) {
+        if (!player.chooseUse(Outcome.Detriment, "Put " + card.getName() + " into your graveyard?", source, game)) {
             return true;
         }
         return player.moveCards(card, Zone.GRAVEYARD, source, game);
diff --git a/Mage.Sets/src/mage/cards/u/UrzasTome.java b/Mage.Sets/src/mage/cards/u/UrzasTome.java
index 06e265e6dd..4080f8ed73 100644
--- a/Mage.Sets/src/mage/cards/u/UrzasTome.java
+++ b/Mage.Sets/src/mage/cards/u/UrzasTome.java
@@ -1,7 +1,5 @@
-
 package mage.cards.u;
 
-import java.util.UUID;
 import mage.abilities.Ability;
 import mage.abilities.common.SimpleActivatedAbility;
 import mage.abilities.costs.Cost;
@@ -20,8 +18,9 @@ import mage.game.Game;
 import mage.players.Player;
 import mage.target.common.TargetCardInYourGraveyard;
 
+import java.util.UUID;
+
 /**
- *
  * @author TheElk801
  */
 public final class UrzasTome extends CardImpl {
@@ -66,7 +65,7 @@ class UrzasTomeEffect extends OneShotEffect {
         Player controller = game.getPlayer(source.getControllerId());
         new DrawCardSourceControllerEffect(1).apply(game, source);
         if (controller != null
-                && controller.chooseUse(Outcome.Discard, "Exile a historic card from your graveyard?", source, game)) {
+                && controller.chooseUse(Outcome.Exile, "Exile a historic card from your graveyard?", source, game)) {
             Cost cost = new ExileFromGraveCost(new TargetCardInYourGraveyard(new FilterHistoricCard()));
             if (cost.canPay(source, source.getSourceId(), controller.getId(), game)) {
                 if (cost.pay(source, game, source.getSourceId(), controller.getId(), false, null)) {