* Added missing override of getAllEffects.

This commit is contained in:
LevelX2 2015-10-09 16:29:51 +02:00
parent ae4580fadc
commit 1739bcab56

View file

@ -237,6 +237,11 @@ public class StackAbility extends StackObjImpl implements Ability {
return ability.getEffects(); return ability.getEffects();
} }
@Override
public Effects getAllEffects() {
return ability.getAllEffects();
}
@Override @Override
public Effects getEffects(Game game, EffectType effectType) { public Effects getEffects(Game game, EffectType effectType) {
return ability.getEffects(game, effectType); return ability.getEffects(game, effectType);