* Target colored cards/creatures - fixed game freeze on cards in deck (example: Angel's Herald and other Herald cards);

This commit is contained in:
Oleg Agafonov 2021-08-04 21:45:26 +04:00
parent 66118faa40
commit 615ab2d97e

View file

@ -4,6 +4,7 @@ import mage.cards.Card;
import mage.cards.Cards; import mage.cards.Cards;
import mage.game.Game; import mage.game.Game;
import java.io.Serializable;
import java.util.*; import java.util.*;
import java.util.stream.Collectors; import java.util.stream.Collectors;
@ -13,7 +14,7 @@ import java.util.stream.Collectors;
* *
* @author TheElk801 * @author TheElk801
*/ */
public abstract class RoleAssignment<T> { public abstract class RoleAssignment<T> implements Serializable {
protected final List<T> attributes = new ArrayList<>(); protected final List<T> attributes = new ArrayList<>();