Skip to content

Commit

Permalink
Fix allowed_rank_range field name in BotConfig
Browse files Browse the repository at this point in the history
  • Loading branch information
anoek committed Dec 9, 2024
1 parent d928569 commit b1b274b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/engine/protocol/ClientToServer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -657,7 +657,7 @@ export interface BotConfigV1 {
allowed_correspondence_settings?: BotAllowedClockSettingsV1;
allow_ranked: boolean;
allow_unranked: boolean;
allowed_rank_ranges: [string, string];
allowed_rank_range: [string, string];
allow_ranked_handicap: boolean;
allow_unranked_handicap: boolean;
allowed_komi_range: [number, number];
Expand All @@ -679,7 +679,7 @@ export interface BotConfigV2 {
allowed_correspondence_settings?: BotAllowedClockSettingsV2;
allow_ranked: boolean;
allow_unranked: boolean;
allowed_rank_ranges: [string, string];
allowed_rank_range: [string, string];
allow_ranked_handicap: boolean;
allow_unranked_handicap: boolean;
allowed_komi_range: [number, number];
Expand Down

0 comments on commit b1b274b

Please sign in to comment.