diff --git a/src/core/game/AllianceImpl.ts b/src/core/game/AllianceImpl.ts index 23477713a..d701dbd06 100644 --- a/src/core/game/AllianceImpl.ts +++ b/src/core/game/AllianceImpl.ts @@ -11,7 +11,7 @@ export class AllianceImpl implements MutableAlliance { ) {} other(player: Player): PlayerImpl { - if (this.requestor_ == player) { + if (this.requestor_ === player) { return this.recipient_; } return this.requestor_;