- Commander spell can be cast from hand if it was bounced

This commit is contained in:
swordshine
2013-09-07 13:17:34 +00:00
parent 82bb71a34b
commit dba19e6cb7

View File

@@ -138,7 +138,7 @@ public final class AbilityFactory {
else if (api == ApiType.PermanentCreature || api == ApiType.PermanentNoncreature) { else if (api == ApiType.PermanentCreature || api == ApiType.PermanentNoncreature) {
// If API is a permanent type, and creating AF Spell // If API is a permanent type, and creating AF Spell
// Clear out the auto created SpellPemanent spell // Clear out the auto created SpellPemanent spell
if (type == AbilityRecordType.Spell) { if (type == AbilityRecordType.Spell && !hostCard.isCommander()) {
hostCard.clearFirstSpell(); hostCard.clearFirstSpell();
} }
} }