refactor: don't add unnecessary game types

This commit is contained in:
Raymond
2025-02-26 22:42:53 -05:00
committed by Azalea
parent d28b9bf5a8
commit 344f62c275
3 changed files with 13 additions and 13 deletions

View File

@@ -42,7 +42,6 @@ export interface CardSummary {
ongeki: CardSummaryGame | null
diva: CardSummaryGame | null
wacca: CardSummaryGame | null
auto: CardSummaryGame | null // let's pretend this just doesn't exist
}

View File

@@ -1,7 +1,7 @@
import { DATA_HOST } from "./config"
import type { MusicMeta } from "./generalTypes"
export type GameName = 'mai2' | 'chu3' | 'ongeki' | 'wacca' | 'auto'
export type GameName = 'mai2' | 'chu3' | 'ongeki' | 'wacca'
const multTable = {
'mai2': [
@@ -68,8 +68,6 @@ const multTable = {
[ 1.0, 0, 'C' ],
[ 0.0, 0, 'D' ]
],
'auto': []
}
export function getMult(achievement: number, game: GameName) {