mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-15 10:18:01 +00:00
- Fixed Braid of Fire
This commit is contained in:
@@ -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.)
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user