Skip to content

Commit

Permalink
FIX: Mioko's Song puts the card faceup
Browse files Browse the repository at this point in the history
  • Loading branch information
lsocrate committed Jan 1, 2024
1 parent 942f116 commit 2ed10b8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion server/game/cards/18.1-EL01/Crane/MiokosSong.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ export default class MiokosSong extends StrongholdCard {
context.player.opponent.moveCard(fromProvince, 'dynasty discard pile');
}
context.player.opponent.moveCard(selectedCard, province.location);
selectedCard.facedown = false;
for (const goToBottom of topCards.filter((c) => c !== selectedCard)) {
context.player.opponent.moveCard(goToBottom, 'dynasty deck bottom');
}
Expand All @@ -67,4 +68,4 @@ export default class MiokosSong extends StrongholdCard {
}
});
}
}
}

0 comments on commit 2ed10b8

Please sign in to comment.