0
0
mirror of https://github.com/sp-tarkov/server.git synced 2025-02-12 15:50:42 -05:00

Merge branch '3.10.4-DEV' of https://github.com/sp-tarkov/server into 3.10.4-DEV

This commit is contained in:
Chomp 2024-12-22 19:57:43 +00:00
commit e10d5d12f2

View File

@ -38,7 +38,7 @@ export class ProgressWriter {
const barFill = this.barFillChar.repeat(filledChars);
const barEmptySpace = this.barEmptyChar.repeat(emptyChars);
const progressBar = `-> ${this.count} / ${this.total} [${barFill}${barEmptySpace}] ${percent}% `;
const progressBar = `-> ${this.count} / ${this.total} ${barFill}${barEmptySpace} ${percent}% `;
readline.cursorTo(process.stdout, 0, null);
process.stdout.write(progressBar);