Skip to content

Commit

Permalink
Merge pull request #170 from LForchini/add-rapid-settings
Browse files Browse the repository at this point in the history
Adds a rapid speed
  • Loading branch information
anoek authored Oct 6, 2024
2 parents 072d6ce + 7efd8f0 commit dd65a55
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/engine/formats/JGOF.ts
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ export interface JGOFPauseState {
moderator?: string;
}

export type JGOFTimeControlSpeed = "blitz" | "live" | "correspondence";
export type JGOFTimeControlSpeed = "blitz" | "rapid" | "live" | "correspondence";
export type JGOFTimeControlSystem =
| "fischer"
| "byoyomi"
Expand Down
2 changes: 1 addition & 1 deletion src/engine/protocol/ClientToServer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -600,7 +600,7 @@ export interface ClientToServer extends ClientToServerBase {
}) => void;
}

export type Speed = "blitz" | "live" | "correspondence";
export type Speed = "blitz" | "rapid" | "live" | "correspondence";
export type Size = "9x9" | "13x13" | "19x19";
export type AutomatchCondition = "required" | "preferred" | "no-preference";
export type RuleSet = "japanese" | "chinese" | "aga" | "korean" | "nz" | "ing";
Expand Down

0 comments on commit dd65a55

Please sign in to comment.