diff --git a/build/artifacts/release/Paper-Bin.out b/build/artifacts/release/Paper-Bin.out index 23ade2b..1187224 100644 Binary files a/build/artifacts/release/Paper-Bin.out and b/build/artifacts/release/Paper-Bin.out differ diff --git a/build/release/Paper-Bin.out b/build/release/Paper-Bin.out index 23ade2b..1187224 100755 Binary files a/build/release/Paper-Bin.out and b/build/release/Paper-Bin.out differ diff --git a/build/release/out/c/Paper-Bin.o b/build/release/out/c/Paper-Bin.o index 645ad72..9fd3747 100644 Binary files a/build/release/out/c/Paper-Bin.o and b/build/release/out/c/Paper-Bin.o differ diff --git a/src/Paper-Bin.c b/src/Paper-Bin.c index c0dd804..5a2e28a 100644 --- a/src/Paper-Bin.c +++ b/src/Paper-Bin.c @@ -191,9 +191,9 @@ void sortScoreboard() fclose(fp); printf(" Scoreboard:\n\n"); - for (int j = 0; j <= numberOfLines; j++) + for (int j = 0; j < numberOfLines; j++) { - printf("%d. %s %s %d\n", j + 1, (j < 10) ? " " : " ", playerlist[j].Name, playerlist[j].Points); + printf("%d. %s %s %d\n", j + 1, (j < 9) ? " " : " ", playerlist[j].Name, playerlist[j].Points); sleep(1000); }