mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
SetPowerToughnessAllEffect - Fixed a bug that the effect did not work correctly for static abilities.
This commit is contained in:
parent
c3ceda12f5
commit
90f4c2ea05
1 changed files with 15 additions and 4 deletions
|
@ -29,6 +29,7 @@
|
|||
package mage.abilities.effects.common.continious;
|
||||
|
||||
import java.util.Locale;
|
||||
import java.util.UUID;
|
||||
import mage.constants.Duration;
|
||||
import mage.constants.Layer;
|
||||
import mage.constants.Outcome;
|
||||
|
@ -86,9 +87,11 @@ public class SetPowerToughnessAllEffect extends ContinuousEffectImpl<SetPowerTou
|
|||
@Override
|
||||
public void init(Ability source, Game game) {
|
||||
super.init(source, game);
|
||||
if (affectedObjectsSet) {
|
||||
for (Permanent perm: game.getBattlefield().getActivePermanents(filter, source.getControllerId(), source.getSourceId(), game)) {
|
||||
objects.add(perm.getId());
|
||||
}
|
||||
}
|
||||
if (lockedInPT) {
|
||||
power = new StaticValue(power.calculate(game, source));
|
||||
toughness = new StaticValue(toughness.calculate(game, source));
|
||||
|
@ -99,8 +102,16 @@ public class SetPowerToughnessAllEffect extends ContinuousEffectImpl<SetPowerTou
|
|||
public boolean apply(Game game, Ability source) {
|
||||
int newPower = power.calculate(game, source);
|
||||
int newToughness = toughness.calculate(game, source);
|
||||
if (affectedObjectsSet) {
|
||||
for (UUID permanentId :objects) {
|
||||
Permanent permanent = game.getPermanent(permanentId);
|
||||
if (permanent != null) {
|
||||
permanent.getPower().setValue(newPower);
|
||||
permanent.getToughness().setValue(newToughness);
|
||||
}
|
||||
}
|
||||
} else {
|
||||
for (Permanent permanent: game.getBattlefield().getActivePermanents(filter, source.getControllerId(), source.getSourceId(), game)) {
|
||||
if(objects.contains(permanent.getId())){
|
||||
permanent.getPower().setValue(newPower);
|
||||
permanent.getToughness().setValue(newToughness);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue