Make sure the score list appears in all situations.

This commit is contained in:
John "Elwin" Edwards 2010-12-07 16:46:07 +00:00
parent 02c8fd2586
commit 1d8ea533bd
8 changed files with 27 additions and 0 deletions

View file

@ -86,6 +86,9 @@ char monst;
refresh();
writelog(purse, KILLED, monst);
score(purse, KILLED, monst);
printf("[Press return to exit]\n");
fflush(NULL);
getchar();
byebye(0);
}
@ -340,6 +343,9 @@ addstr("a great profit and are admitted to the fighters guild.\n");
showpack(TRUE, NULL);
writelog(purse, WINNER, 0);
score(purse, WINNER, 0);
printf("[Press return to exit]\n");
fflush(NULL);
getchar();
byebye(0);
}