fix bot teams

This commit is contained in:
1brucben
2025-05-06 01:35:51 +02:00
parent 2996fa7e75
commit 4c4646aadb
+1 -1
View File
@@ -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();