Re: Forge Beta: 01-18-2013 ver 1.3.5
Max, due to the changes made in CardFactory now the Lotus Bloom suspends correctly but doesn't come into play when the last time counter is removed.
This is because the change made (methinks) made the spell uncastable, so it will never move from the exiled zone into the battlefield.
EDIT 1:Ok, I've fixed it (that was a bit brutal, but whatever)
EDIT 2: I still have to understand how to commit the changes LOL.
I want to test it a bit though, I'll eventually commit later.
This is because the change made (methinks) made the spell uncastable, so it will never move from the exiled zone into the battlefield.
EDIT 1:Ok, I've fixed it (that was a bit brutal, but whatever)
- Code: Select all
private void playFromSuspend() {
final Card c = this;
//Checks if the card is castable. If not, it makes it castable.
if (c.getManaCost().isNoCost())
{
c.addSpellAbility(new SpellPermanent(c));
}
EDIT 2: I still have to understand how to commit the changes LOL.
I want to test it a bit though, I'll eventually commit later.