mirror of
https://github.com/correl/mage.git
synced 2025-04-08 01:01:04 -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,
|
||||||
sourceAbilities
|
sourceAbilities
|
||||||
);
|
);
|
||||||
res.add("--------------------------------------------------------------------------\n" + FUSE_RULE);
|
if (getSpellAbility().getSpellAbilityType() == SpellAbilityType.SPLIT_FUSED) {
|
||||||
|
res.add("--------------------------------------------------------------------------\n" + FUSE_RULE);
|
||||||
|
}
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -210,7 +212,9 @@ public abstract class SplitCard extends CardImpl implements CardWithHalves {
|
||||||
sourceAbilities,
|
sourceAbilities,
|
||||||
sourceAbilities
|
sourceAbilities
|
||||||
);
|
);
|
||||||
res.add("--------------------------------------------------------------------------\n" + FUSE_RULE);
|
if (getSpellAbility().getSpellAbilityType() == SpellAbilityType.SPLIT_FUSED) {
|
||||||
|
res.add("--------------------------------------------------------------------------\n" + FUSE_RULE);
|
||||||
|
}
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue