mirror of
https://github.com/correl/mage.git
synced 2025-01-12 03:00:13 +00:00
Fix infect insect token not appearing with ONC image
This commit is contained in:
parent
d5e74dd710
commit
aef71f20a4
1 changed files with 3 additions and 1 deletions
|
@ -5,6 +5,8 @@ import mage.abilities.keyword.InfectAbility;
|
|||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
import java.util.Arrays;
|
||||
|
||||
/**
|
||||
* @author nantuko
|
||||
*/
|
||||
|
@ -19,7 +21,7 @@ public final class InsectInfectToken extends TokenImpl {
|
|||
power = new MageInt(1);
|
||||
toughness = new MageInt(1);
|
||||
addAbility(InfectAbility.getInstance());
|
||||
setOriginalExpansionSetCode("SOM");
|
||||
availableImageSetCodes = Arrays.asList("SOM", "ONC");
|
||||
}
|
||||
|
||||
public InsectInfectToken(final InsectInfectToken token) {
|
||||
|
|
Loading…
Reference in a new issue