1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-08 17:00:07 -09:00

Fix zombie tokens from MIC not displaying with images

This commit is contained in:
PurpleCrowbar 2023-03-19 19:22:06 +00:00
parent 2631250bc0
commit 2c15ac39fc

View file

@ -53,6 +53,9 @@ public final class ZombieToken extends TokenImpl {
if (getOriginalExpansionSetCode().equals("C19")) {
this.setTokenType(RandomUtil.nextInt(2) + 1);
}
if (getOriginalExpansionSetCode().equals("MIC")) {
this.setTokenType(1);
}
}
public ZombieToken(final ZombieToken token) {