mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
* Target colored cards/creatures - fixed game freeze on cards in deck (example: Angel's Herald and other Herald cards);
This commit is contained in:
parent
66118faa40
commit
615ab2d97e
1 changed files with 2 additions and 1 deletions
|
@ -4,6 +4,7 @@ import mage.cards.Card;
|
|||
import mage.cards.Cards;
|
||||
import mage.game.Game;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.*;
|
||||
import java.util.stream.Collectors;
|
||||
|
||||
|
@ -13,7 +14,7 @@ import java.util.stream.Collectors;
|
|||
*
|
||||
* @author TheElk801
|
||||
*/
|
||||
public abstract class RoleAssignment<T> {
|
||||
public abstract class RoleAssignment<T> implements Serializable {
|
||||
|
||||
protected final List<T> attributes = new ArrayList<>();
|
||||
|
||||
|
|
Loading…
Reference in a new issue