- Fixed Braid of Fire

This commit is contained in:
swordshine
2013-11-14 13:25:28 +00:00
parent 181a7f5b9c
commit d32bfea94e
2 changed files with 2 additions and 2 deletions

View File

@@ -1,7 +1,7 @@
Name:Braid of Fire
ManaCost:1 R
Types:Enchantment
K:Cumulative upkeep:AddMana<1/R>:Add R to your mana pool.
K:Cumulative upkeep:AddMana<1/R>:Add {R} to your mana pool.
SVar:RemAIDeck:True
SVar:Picture:http://www.wizards.com/global/images/magic/general/braid_of_fire.jpg
Oracle:Cumulative upkeep-Add {R} to your mana pool. (At the beginning of your upkeep, put an age counter on this permanent, then sacrifice it unless you pay its upkeep cost for each age counter on it.)

View File

@@ -206,7 +206,7 @@ public class ManaPool {
continue;
for(final Mana thisMana : this.floatingMana.get(manaKey)) {
if (!thisMana.getManaAbility().meetsManaRestrictions(saBeingPaidFor)) {
if (thisMana.getManaAbility() != null && !thisMana.getManaAbility().meetsManaRestrictions(saBeingPaidFor)) {
continue;
}