mirror of
https://github.com/correl/mage.git
synced 2025-01-12 11:08:01 +00:00
Fixed same images displayed for Wurncoil Engine's tokens
This commit is contained in:
parent
4393a55569
commit
09bd74f26e
1 changed files with 4 additions and 1 deletions
|
@ -28,7 +28,6 @@
|
|||
|
||||
package mage.sets.scarsofmirrodin;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.Constants.CardType;
|
||||
import mage.Constants.Rarity;
|
||||
import mage.MageInt;
|
||||
|
@ -40,6 +39,8 @@ import mage.abilities.keyword.LifelinkAbility;
|
|||
import mage.cards.CardImpl;
|
||||
import mage.game.permanent.token.Token;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Loki
|
||||
|
@ -91,5 +92,7 @@ class Wurm2Token extends Token {
|
|||
power = new MageInt(3);
|
||||
toughness = new MageInt(3);
|
||||
this.addAbility(LifelinkAbility.getInstance());
|
||||
|
||||
setTokenType(2); // for image
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue