Remove "collected" from fancy progress message

This commit is contained in:
Luke Street 2024-06-09 22:42:12 -06:00
parent a739a4f915
commit 182de95dae
1 changed files with 1 additions and 1 deletions

View File

@ -1235,7 +1235,7 @@ def calculate_progress(config: ProjectConfig) -> None:
print(f" Data: {unit.data_progress} / {unit.data_total} bytes") print(f" Data: {unit.data_progress} / {unit.data_total} bytes")
if config.progress_use_fancy: if config.progress_use_fancy:
print( print(
"\nYou have {} out of {} {} and collected {} out of {} {}.".format( "\nYou have {} out of {} {} and {} out of {} {}.".format(
math.floor(code_frac * unit.code_fancy_frac), math.floor(code_frac * unit.code_fancy_frac),
unit.code_fancy_frac, unit.code_fancy_frac,
unit.code_fancy_item, unit.code_fancy_item,