forked from External/mage
[VOW] fix Sigarda's Summons only applying to a single creature
This commit is contained in:
parent
f097e9763d
commit
265f1e1ca4
1 changed files with 3 additions and 4 deletions
|
|
@ -60,19 +60,18 @@ class SigardasSummonsEffect extends ContinuousEffectImpl {
|
|||
switch (layer) {
|
||||
case TypeChangingEffects_4:
|
||||
permanent.addSubType(game, SubType.ANGEL);
|
||||
return true;
|
||||
continue;
|
||||
case AbilityAddingRemovingEffects_6:
|
||||
permanent.addAbility(FlyingAbility.getInstance(), source.getSourceId(), game);
|
||||
return true;
|
||||
continue;
|
||||
case PTChangingEffects_7:
|
||||
if (sublayer == SubLayer.SetPT_7b) {
|
||||
permanent.getPower().setModifiedBaseValue(4);
|
||||
permanent.getToughness().setModifiedBaseValue(4);
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue