diff --git a/src/core/game/PlayerImpl.ts b/src/core/game/PlayerImpl.ts index 97aa337f9..af24531d6 100644 --- a/src/core/game/PlayerImpl.ts +++ b/src/core/game/PlayerImpl.ts @@ -606,6 +606,9 @@ export class PlayerImpl implements Player { if (this.team() == null || other.team() == null) { return false; } + if (this.team() == Team.Bot || other.team() == Team.Bot) { + return false; + } return this._team == other.team(); }