From 394e5204cba0604b7857a1c7a29a2887d823a217 Mon Sep 17 00:00:00 2001 From: AutumnVN Date: Wed, 2 Oct 2024 10:24:35 +0700 Subject: [PATCH] add readme --- README.md | 14 ++++++++++++++ src/index.ts | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..8f0a048 --- /dev/null +++ b/README.md @@ -0,0 +1,14 @@ +# osu-mpbd + +An application for downloading beatmapsets from "most played beatmaps" section of an osu! player's profile + +## Preview + +![](https://github.com/user-attachments/assets/fc9a0900-9015-4f9f-9c76-8fb28680451e) + +## Credits + +[Mino beatmap mirror](https://catboy.best) + +## do not suffer like one of my friends 😭 +![](https://github.com/user-attachments/assets/a7330378-ec21-4b8b-a223-8c6fa7f3094c) diff --git a/src/index.ts b/src/index.ts index 165ce2c..3c66fe2 100644 --- a/src/index.ts +++ b/src/index.ts @@ -85,7 +85,7 @@ interface MostPlayedBeatmap { const playerId = await rl.question('Enter player ID: '); if (!playerId || isNaN(Number(playerId))) return console.error('Invalid player ID'); - const amount = Number(await rl.question('Enter amount of beatmaps to download: ')); + const amount = Number(await rl.question('Enter amount of beatmapsets to download: ')); if (!amount || isNaN(amount)) return console.error('Invalid amount'); const noVideo = await rl.question('Prefer no video? (y)/n: ');