chore: update osu command progress style

This commit is contained in:
2025-02-05 13:28:27 +08:00
parent 6bce847a0f
commit b7db3b3e98
1 file changed
+1 -1
@@ -49,7 +49,7 @@ class OSUCommand : BaseCommand() {
private fun generateProgressBar(percent: Int, length: Int = 10): String {
val completedLength = (percent * length) / 100
val remainingLength = length - completedLength
val progressBar = "".repeat(completedLength) + " ".repeat(remainingLength)
val progressBar = "".repeat(completedLength) + "=".repeat(remainingLength)
return "[$progressBar] $percent%"
}