diff options
author | B. Watson <yalhcru@gmail.com> | 2021-04-09 04:21:34 -0400 |
---|---|---|
committer | B. Watson <yalhcru@gmail.com> | 2021-04-09 04:21:34 -0400 |
commit | c9b3be8313e4e0418ee78d2ce9a6255a8cd7a664 (patch) | |
tree | 69f3bca86dd9935a169a415b484c95ff1ed655e9 | |
parent | d174861fabcc8efbf28fb9817a7000d8d38f0d97 (diff) | |
download | taipan-c9b3be8313e4e0418ee78d2ce9a6255a8cd7a664.tar.gz |
Actually kill player if ship sinks
-rw-r--r-- | taipan.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -2437,6 +2437,7 @@ void quit(void) under_attack_timed_getch(); final_stats(); + return; } } @@ -3273,7 +3274,7 @@ void visit_bank(void) { } #endif } - port_stats(); + // port_stats(); /* don't do this here, the caller does it after we return */ return; } |