Fix infect insect token not appearing with ONC image

This commit is contained in:
PurpleCrowbar 2023-03-02 22:01:26 +00:00
parent d5e74dd710
commit aef71f20a4

View file

@ -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) {