mirror of
https://github.com/correl/mage.git
synced 2025-01-11 19:13:02 +00:00
* Added missing override of getAllEffects.
This commit is contained in:
parent
ae4580fadc
commit
1739bcab56
1 changed files with 5 additions and 0 deletions
|
@ -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);
|
||||||
|
|
Loading…
Reference in a new issue