[NCC] Fix Citizen token creation for Master of Ceremonies

This commit is contained in:
Alex Vasile 2022-07-27 07:52:13 -04:00
parent 516ac042a2
commit 14485ae635

View file

@ -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) {