- Converted obsessive search, fixed null error in SA_Reqs

This commit is contained in:
jendave
2011-08-06 11:11:30 +00:00
parent d5f5314d12
commit c2672ca4d0
2 changed files with 4 additions and 3 deletions

View File

@@ -2,7 +2,7 @@ Name:Obsessive Search
ManaCost:U
Types:Instant
Text:no text
K:spDrawCards:1:Draw a card.:Obsessive Search - draw a card.
A:SP$Draw | Cost$ U | NumCards$ 1 | SpellDescription$ Draw a card.
K:Madness:U
SVar:Rarity:Common
SVar:Picture:http://www.wizards.com/global/images/magic/general/obsessive_search.jpg

View File

@@ -21,6 +21,7 @@ public class SpellAbility_Requirements {
if (!ability.getSourceCard().isCopiedSpell()){
Card c = ability.getSourceCard();
fromZone = AllZone.getZone(c);
if (fromZone != null)
fromZone.remove(c);
}
}