Skip to content

Commit

Permalink
Fixed equality check error
Browse files Browse the repository at this point in the history
  • Loading branch information
kev306 committed Dec 14, 2023
1 parent 5354a18 commit cf9c239
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gameplay/game.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1900,7 +1900,7 @@ class Game extends Room {
}

updateMuteSpectators(muteSpectators: boolean) {
if (this.gameStarted == false) {
if (this.gameStarted === false) {
this.muteSpectators = muteSpectators;

this.sendText(
Expand Down

0 comments on commit cf9c239

Please sign in to comment.