forked from External/mage
[NCC] Fix Citizen token creation for Master of Ceremonies
This commit is contained in:
parent
516ac042a2
commit
14485ae635
1 changed files with 3 additions and 1 deletions
|
|
@ -114,15 +114,17 @@ class MasterOfCeremoniesChoiceEffect extends OneShotEffect {
|
|||
Token treasureOpponent = new TreasureToken();
|
||||
treasureOpponent.putOntoBattlefield(1, game, source, opponentId);
|
||||
}
|
||||
game.applyEffects();
|
||||
|
||||
// Friends - You and that player each create a 1/1 green and white Citizen creature token.
|
||||
for (UUID opponentId : friendChoosers) {
|
||||
Token citizenOwner = new CitizenGreenWhiteToken();
|
||||
citizenOwner.putOntoBattlefield(1, game, source, opponentId);
|
||||
citizenOwner.putOntoBattlefield(1, game, source, controller.getId());
|
||||
|
||||
Token citizenOpponent = new CitizenGreenWhiteToken();
|
||||
citizenOpponent.putOntoBattlefield(1, game, source, opponentId);
|
||||
}
|
||||
game.applyEffects();
|
||||
|
||||
// Secrets - You and that player each draw a card.
|
||||
for (UUID opponentId : secretsChoosers) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue