mirror of
https://github.com/magefree/mage.git
synced 2025-12-24 12:31:59 -08:00
Merge fix
This commit is contained in:
parent
e30eecead3
commit
f0e56ae71c
1 changed files with 1 additions and 1 deletions
|
|
@ -73,7 +73,7 @@ class MomirEffect extends OneShotEffect {
|
|||
while (!options.isEmpty()) {
|
||||
int index = RandomUtil.nextInt(options.size());
|
||||
ExpansionSet expansionSet = Sets.findSet(options.get(index).getSetCode());
|
||||
if (expansionSet == null || expansionSet.getSetType() == SetType.CUSTOM_SET) {
|
||||
if (expansionSet == null || !expansionSet.getSetType().isEternalLegal()) {
|
||||
options.remove(index);
|
||||
} else {
|
||||
Card card = options.get(index).getCard();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue