diff --git a/api/mdmc.ts b/api/mdmc.ts index 4d49059..0a5a435 100644 --- a/api/mdmc.ts +++ b/api/mdmc.ts @@ -55,7 +55,7 @@ const makeList = async () => { const downloadSongs = () => fetch('https://api.mdmc.moe/v2/charts/ranked').then(w => w.json()) const downloadCore = async ({ hash }: { hash: string }) => { - const w = await fetch(`https://api.mdmc.moe/v2/hq/md?bms_id=${hash}`).then(p => p.json()) + const w = await fetch(`https://api.mdmc.moe/v2/hq/md?bms_id=${hash}&limit=2000`).then(p => p.json()) return w.result }