Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Stamina bhop game mode #175

Open
wants to merge 1 commit into
base: feat/mom-0.10
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading