From 2b0f1ce47fe57790c9c7dc36cc18a33eff5ca2fe Mon Sep 17 00:00:00 2001 From: jendave Date: Sat, 6 Aug 2011 08:15:40 +0000 Subject: [PATCH] Made Urborg Uprising and other spRaiseDead spells with "Some" playable even when there are no creatures in the graveyard. --- src/forge/CardFactory.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/forge/CardFactory.java b/src/forge/CardFactory.java index cbbeb6e575a..4f77ad3d3b3 100644 --- a/src/forge/CardFactory.java +++ b/src/forge/CardFactory.java @@ -5480,6 +5480,7 @@ public class CardFactory implements NewConstants { @Override public boolean canPlay() { + if (weReturnUpTo) return true; return getGraveCreatures().size() >= numCreatures; }