mirror of
https://github.com/correl/mage.git
synced 2024-12-24 11:50:45 +00:00
* Bolas's Citadel - fixed error on land play from library's top;
This commit is contained in:
parent
af574443f8
commit
c1dea3456c
1 changed files with 4 additions and 2 deletions
|
@ -104,8 +104,10 @@ class BolassCitadelPlayTheTopCardEffect extends AsThoughEffectImpl {
|
|||
Costs costs = new CostsImpl();
|
||||
costs.add(cost);
|
||||
// check for additional costs that must be paid
|
||||
for (Cost additionalCost : cardOnTop.getSpellAbility().getCosts()) {
|
||||
costs.add(additionalCost);
|
||||
if (cardOnTop.getSpellAbility() != null) {
|
||||
for (Cost additionalCost : cardOnTop.getSpellAbility().getCosts()) {
|
||||
costs.add(additionalCost);
|
||||
}
|
||||
}
|
||||
controller.setCastSourceIdWithAlternateMana(cardOnTop.getId(), null, costs);
|
||||
return true;
|
||||
|
|
Loading…
Reference in a new issue