Skip to content

Commit a028114

Browse files
authored
Update start-game.js
1 parent 74100fb commit a028114

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

routes/socket/game/start-game.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,8 @@ const beginGame = game => {
8989
} else if (game.general.avalonSH?.withPercival) {
9090
return { cardName: el % 3 === 1 ? 'morgana' : 'fascist', icon: el, team: 'fascist' };
9191
} else if (game.general.monarchistSH) {
92-
return { cardName: 'monarchist', icon: undefined, team: 'fascist' };
92+
if (el % 3 === 0) return { cardName: 'monarchist', icon: undefined, team: 'fascist' };
93+
return { cardName: 'fascist', icon: el, team: 'fascist' };
9394
} else {
9495
return { cardName: 'fascist', icon: el, team: 'fascist' };
9596
}

0 commit comments

Comments
 (0)