diff options
Diffstat (limited to 'taipan.c')
-rw-r--r-- | taipan.c | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -2021,7 +2021,7 @@ void final_stats(void) print_msg(M_spc_and_spc); /* if you retire in e.g. december 1870, that's 9 years and 11 months, - not 9 years and 12 months. If you retire in january 1866, it should + not 9 years and 12 months. If you retire in january 1861, it should read 1 year and 0 months (not 1 year and 1 month!). */ month--; @@ -2043,18 +2043,18 @@ void final_stats(void) cprint_period(); crlf(); rvs_off(); - if ((score < 100) && (score >= 0)) - { - // cputs("Have you considered a land based job?\n\n\n"); - print_msg(M_land_based_job); - } else if (score < 0) { + + if(score < 0) // cputs("The crew has requested that you stay on\n" // "shore for their safety!!\n\n"); print_msg(M_stay_on_shore); - } else { + else if(score < 100) + // cputs("Have you considered a land based job?\n\n\n"); + print_msg(M_land_based_job); + else // cputs("\n\n\n"); print_msg(M_3_nls); - } + // cputs("Your Rating:\n"); print_msg(M_your_rating); cputc(17); // upper left corner |