GUI: added stacked feature for a non-creature tokens like Food and Treasure (#12242)

This commit is contained in:
grimreap124 2024-05-14 14:55:54 +10:00 committed by GitHub
parent 9f7b7654a4
commit 7e7287e7eb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 92 additions and 51 deletions

View file

@ -18,4 +18,8 @@ public abstract class MagePermanent extends MageCard {
return getOriginal().isLand();
}
public boolean isToken() {
return getOriginal().isToken();
}
}