mirror of
https://github.com/correl/mage.git
synced 2024-12-24 11:50:45 +00:00
BoostPowerXSourceEffect fix.
This commit is contained in:
parent
51a9c03ed1
commit
66fad7b482
1 changed files with 3 additions and 8 deletions
|
@ -63,14 +63,9 @@ public class BoostPowerXSourceEffect extends ContinuousEffectImpl<BoostPowerXSou
|
|||
|
||||
@Override
|
||||
public boolean apply(Game game, Ability source) {
|
||||
if (amount < 0) {
|
||||
List<VariableCost> varCost = source.getCosts().getVariableCosts();
|
||||
if (varCost.size() > 0) {
|
||||
amount = varCost.get(0).getAmount();
|
||||
} else {
|
||||
amount = 0;
|
||||
return false;
|
||||
}
|
||||
int amount = source.getManaCostsToPay().getVariableCosts().get(0).getAmount();
|
||||
if (amount == 0) {
|
||||
return false;
|
||||
}
|
||||
Permanent target = (Permanent) game.getPermanent(source.getSourceId());
|
||||
if (target != null) {
|
||||
|
|
Loading…
Reference in a new issue