mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 13:02:06 -08:00
* Subtypes of tokens were not set back correctly after a subtype changing effect did end (e.g. Arcane Adaptation).
This commit is contained in:
parent
6d848e2059
commit
f0f407457e
2 changed files with 26 additions and 2 deletions
|
|
@ -88,8 +88,10 @@ public class PermanentToken extends PermanentImpl {
|
|||
this.color = token.getColor(game).copy();
|
||||
this.frameColor = token.getFrameColor(game);
|
||||
this.frameStyle = token.getFrameStyle();
|
||||
this.supertype = token.getSuperType();
|
||||
this.subtype = token.getSubtype(game);
|
||||
this.supertype.clear();
|
||||
this.supertype.addAll(token.getSuperType());
|
||||
this.subtype.clear();
|
||||
this.subtype.addAll(token.getSubtype(game));
|
||||
this.tokenDescriptor = token.getTokenDescriptor();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue