* Willbender - Fixed that target of abilities could not be changed.

This commit is contained in:
LevelX2 2016-06-17 15:11:05 +02:00
parent f6c1538bda
commit e334d85078
3 changed files with 45 additions and 29 deletions

View file

@ -178,7 +178,9 @@ public class StackAbility extends StackObjImpl implements Ability {
@Override
public Abilities<Ability> getAbilities() {
return emptyAbilites;
Abilities<Ability> abilities = new AbilitiesImpl<>();
abilities.add(ability);
return abilities;
}
@Override