fix implementation of MagicAbilityList.loseAbility to only lose the specific abilities not all abilities

master
melvin 2014-08-29 09:08:24 +08:00
parent 910d38ec7f
commit b1e11aad23
1 changed files with 1 additions and 1 deletions

View File

@ -57,6 +57,6 @@ public class MagicAbilityList implements MagicAbilityStore {
}
public void loseAbility(final MagicPermanent permanent, final Set<MagicAbility> flags) {
flags.removeAll(flags);
flags.removeAll(abilities);
}
}