mirror of
https://github.com/correl/mage.git
synced 2025-03-31 17:00:10 -09:00
GUI: fixed that some split cards show a fuse rule (#10217)
This commit is contained in:
parent
d6506657d6
commit
29afbe042c
1 changed files with 6 additions and 2 deletions
|
@ -196,7 +196,9 @@ public abstract class SplitCard extends CardImpl implements CardWithHalves {
|
|||
sourceAbilities,
|
||||
sourceAbilities
|
||||
);
|
||||
res.add("--------------------------------------------------------------------------\n" + FUSE_RULE);
|
||||
if (getSpellAbility().getSpellAbilityType() == SpellAbilityType.SPLIT_FUSED) {
|
||||
res.add("--------------------------------------------------------------------------\n" + FUSE_RULE);
|
||||
}
|
||||
return res;
|
||||
}
|
||||
|
||||
|
@ -210,7 +212,9 @@ public abstract class SplitCard extends CardImpl implements CardWithHalves {
|
|||
sourceAbilities,
|
||||
sourceAbilities
|
||||
);
|
||||
res.add("--------------------------------------------------------------------------\n" + FUSE_RULE);
|
||||
if (getSpellAbility().getSpellAbilityType() == SpellAbilityType.SPLIT_FUSED) {
|
||||
res.add("--------------------------------------------------------------------------\n" + FUSE_RULE);
|
||||
}
|
||||
return res;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue