Skip to content

Commit

Permalink
add readme
Browse files Browse the repository at this point in the history
  • Loading branch information
AutumnVN committed Oct 2, 2024
1 parent ec1eb30 commit 394e520
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -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)
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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: ');
Expand Down

0 comments on commit 394e520

Please sign in to comment.