diff --git a/src/core/game/PlayerImpl.ts b/src/core/game/PlayerImpl.ts index e1716bce1..bb906acb3 100644 --- a/src/core/game/PlayerImpl.ts +++ b/src/core/game/PlayerImpl.ts @@ -557,6 +557,9 @@ export class PlayerImpl implements Player { } canSendEmoji(recipient: Player | typeof AllPlayers): boolean { + if (recipient === this) { + return false; + } const recipientID = recipient === AllPlayers ? AllPlayers : recipient.smallID(); const prevMsgs = this.outgoingEmojis_.filter(