diff --git a/src/core/configuration/ColorAllocator.ts b/src/core/configuration/ColorAllocator.ts index 0421a7daa..f25f8a2fa 100644 --- a/src/core/configuration/ColorAllocator.ts +++ b/src/core/configuration/ColorAllocator.ts @@ -76,9 +76,7 @@ export class ColorAllocator { case ColoredTeams.Bot: return botColor; default: - return this.availableColors[ - simpleHash(team) % this.availableColors.length - ]; + return this.assignColor(team); } } }