Skip to content

Commit

Permalink
feat: Stamina bhop game mode
Browse files Browse the repository at this point in the history
Note: The game mode won't be visible on the map selector yet
  • Loading branch information
Panzerhandschuh committed Jan 19, 2025
1 parent 7ad6be1 commit 24b9a91
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion scripts/common/gamemode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ const extraModeData = [
[Gamemode.CONC, { i18n: '#Gamemode_Conc' }],
[Gamemode.DEFRAG_CPM, { i18n: '#Gamemode_DefragCPM' }],
[Gamemode.DEFRAG_VQ3, { i18n: '#Gamemode_DefragVQ3' }],
[Gamemode.DEFRAG_VTG, { i18n: '#Gamemode_DefragVTG' }]
[Gamemode.DEFRAG_VTG, { i18n: '#Gamemode_DefragVTG' }],
[Gamemode.BHOP_STAMINA, { i18n: '#Gamemode_BhopStamina' }]
] as const;

// Just append to the existing data, shouldn't be using original version anywhere anyway.
Expand Down
4 changes: 2 additions & 2 deletions scripts/common/web.ts
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ export enum ISOCountryCode {
CC = 'Cocos (Keeling) Islands',
CD = 'Congo',
CF = 'Central African Republic',
// eslint-disable-next-line @typescript-eslint/no-duplicate-enum-values
CG = 'Congo',
CH = 'Switzerland',
CI = 'Ivory Coast',
Expand Down Expand Up @@ -1563,7 +1563,7 @@ export interface CompletedRun {
//#endregion
//#region Misc

/* eslint-disable @typescript-eslint/naming-convention */
export interface TwitchStream {
title: string;
user_name: string;
Expand Down

0 comments on commit 24b9a91

Please sign in to comment.