forked from External/mage
updated how Saga abilities are added
still need to fix sacrificing works (#4875)
This commit is contained in:
parent
4ac6e7d86c
commit
f2835685e9
11 changed files with 147 additions and 52 deletions
|
|
@ -44,6 +44,10 @@ public class Effects extends ArrayList<Effect> {
|
|||
public Effects() {
|
||||
}
|
||||
|
||||
public Effects(Effect effect) {
|
||||
this.add(effect);
|
||||
}
|
||||
|
||||
public Effects(final Effects effects) {
|
||||
for (Effect effect : effects) {
|
||||
this.add(effect.copy());
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue