From 4c4646aadbe4c768c0c45395b8a5c08f3005a395 Mon Sep 17 00:00:00 2001 From: 1brucben <1benjbruce@gmail.com> Date: Tue, 6 May 2025 01:35:51 +0200 Subject: [PATCH] fix bot teams --- src/core/game/PlayerImpl.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/game/PlayerImpl.ts b/src/core/game/PlayerImpl.ts index baa00fac0..ee651f645 100644 --- a/src/core/game/PlayerImpl.ts +++ b/src/core/game/PlayerImpl.ts @@ -606,7 +606,7 @@ export class PlayerImpl implements Player { if (this.team() == null || other.team() == null) { return false; } - if (this.team() == Team.Bot) { + if (this.team() === "Bot") { return false; } return this._team == other.team();