mirror of
https://github.com/magefree/mage.git
synced 2025-12-23 20:11:59 -08:00
gui: fix stacking of land creature tokens (#12318)
Moving land creatures into the creature row like they were pre-stacking update related to #12242, #12248, #12256
This commit is contained in:
parent
f253777f7c
commit
6498522b4e
1 changed files with 2 additions and 1 deletions
|
|
@ -140,7 +140,8 @@ public class CardPluginImpl implements CardPlugin {
|
|||
for (MageCard card : cards.values()) {
|
||||
MagePermanent perm = (MagePermanent) card.getMainPanel(); // all cards must be MagePermanent on battlefield
|
||||
|
||||
if (!rowType.isType(perm) || perm.getOriginalPermanent().isAttachedToPermanent()) {
|
||||
if (!rowType.isType(perm) || perm.getOriginalPermanent().isAttachedToPermanent()
|
||||
|| (perm.isCreature() && !rowType.equals(RowType.creature))) {
|
||||
continue;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue