From 8a3de209e14424683d06f443d9ceb74ce0e93366 Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Tue, 18 May 2021 00:22:43 -0400 Subject: Save 9 bytes, now 8825 --- taipan.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/taipan.c b/taipan.c index d6c52e1..20438cd 100644 --- a/taipan.c +++ b/taipan.c @@ -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 -- cgit v1.2.3