We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f4b6968 commit 659ed78Copy full SHA for 659ed78
1 file changed
src/ps/games/scrabble/index.ts
@@ -67,6 +67,7 @@ export class Scrabble extends BaseGame<State> {
67
Object.keys(this.players).forEach(player => {
68
this.state.score[player] = 0;
69
this.state.racks[player] = this.state.bag.splice(0, RACK_SIZE);
70
+ if (this.state.racks[player].includes('_')) this.room.privateSend(player, this.$T('GAME.SCRABBLE.HOW_TO_BLANK'));
71
});
72
return { success: true, data: null };
73
}
0 commit comments