From c7937dc570a6827ef48b63131c45027d19fd908e Mon Sep 17 00:00:00 2001 From: Scott Anderson <662325+scottanderson@users.noreply.github.com> Date: Mon, 14 Apr 2025 21:14:09 -0400 Subject: [PATCH] AllianceImpl --- src/core/game/AllianceImpl.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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_;