Use correct Splatfest stages and update stage images

This commit is contained in:
Samuel Elliott
2022-09-21 18:48:02 +01:00
parent 32327a0531
commit c85d184807
2 changed files with 11 additions and 3 deletions

View File

@@ -900,7 +900,15 @@ interface CoopWeapon {
interface FestSchedule {
startTime: string; // "2022-09-09T08:00:00Z"
endTime: string; // "2022-09-09T10:00:00Z"
festMatchSetting: unknown | null;
festMatchSetting: FestMatchSetting | null;
}
interface FestMatchSetting {
__isVsSetting: 'FestMatchSetting';
__typename: 'FestMatchSetting';
vsStages: VsStage[];
vsRule: VsRule;
// ...
}
interface VsStageDetail {