From 12f094e85483f4c8ecc46d7aa35925120ed9edc3 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Sun, 30 Jul 2017 12:30:47 +0200 Subject: [PATCH] * Oath of Nissa - Fixed that the revealed and not selected cards were not always put on the bottom of the library. --- Mage.Sets/src/mage/cards/o/OathOfNissa.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/o/OathOfNissa.java b/Mage.Sets/src/mage/cards/o/OathOfNissa.java index 987a3921ac..dc82ce4dd4 100644 --- a/Mage.Sets/src/mage/cards/o/OathOfNissa.java +++ b/Mage.Sets/src/mage/cards/o/OathOfNissa.java @@ -122,8 +122,8 @@ class OathOfNissaEffect extends OneShotEffect { topCards.remove(card); } } - controller.putCardsOnBottomOfLibrary(topCards, game, source, true); } + controller.putCardsOnBottomOfLibrary(topCards, game, source, true); } return true; }