- Fixed Multikicker freezing the game.

This commit is contained in:
Sloth
2013-06-09 08:10:06 +00:00
parent fc3ca0b423
commit c33217d3c4

View File

@@ -332,7 +332,7 @@ public class MagicStack /* extends MyObservable */ implements Iterable<SpellAbil
hasPaid = activating.getController().payManaOptional(sp.getSourceCard(), costMultikicker, prompt, ManaPaymentPurpose.Multikicker); hasPaid = activating.getController().payManaOptional(sp.getSourceCard(), costMultikicker, prompt, ManaPaymentPurpose.Multikicker);
if( hasPaid ) if( hasPaid )
sp.getSourceCard().addMultiKickerMagnitude(1); sp.getSourceCard().addMultiKickerMagnitude(1);
} while( !hasPaid ); } while( hasPaid );
} }
// The ability is added to stack HERE // The ability is added to stack HERE