mirror of
https://github.com/magefree/mage.git
synced 2025-12-28 14:32:06 -08:00
* Brave the Elements - Fixed not working choose color effect.
This commit is contained in:
parent
643b7a5ad8
commit
28ed7f1b63
4 changed files with 95 additions and 104 deletions
|
|
@ -1,5 +1,6 @@
|
|||
package mage.abilities;
|
||||
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
|
|
@ -14,9 +15,7 @@ public class CompoundAbility extends AbilitiesImpl<Ability> {
|
|||
}
|
||||
|
||||
public CompoundAbility(String ruleText, Ability... abilities) {
|
||||
for (Ability ability : abilities) {
|
||||
add(ability);
|
||||
}
|
||||
addAll(Arrays.asList(abilities));
|
||||
}
|
||||
|
||||
public CompoundAbility(final CompoundAbility compoundAbility) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue