1 parent 74100fb commit a028114Copy full SHA for a028114
1 file changed
routes/socket/game/start-game.js
@@ -89,7 +89,8 @@ const beginGame = game => {
89
} else if (game.general.avalonSH?.withPercival) {
90
return { cardName: el % 3 === 1 ? 'morgana' : 'fascist', icon: el, team: 'fascist' };
91
} else if (game.general.monarchistSH) {
92
- return { cardName: 'monarchist', icon: undefined, team: 'fascist' };
+ if (el % 3 === 0) return { cardName: 'monarchist', icon: undefined, team: 'fascist' };
93
+ return { cardName: 'fascist', icon: el, team: 'fascist' };
94
} else {
95
return { cardName: 'fascist', icon: el, team: 'fascist' };
96
}
0 commit comments