[VOW] fix Sigarda's Summons only applying to a single creature

This commit is contained in:
Evan Kranzler 2022-11-06 18:20:07 -05:00
parent f097e9763d
commit 265f1e1ca4

View file

@ -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