diff options
author | B. Watson <yalhcru@gmail.com> | 2021-04-03 19:06:41 -0400 |
---|---|---|
committer | B. Watson <yalhcru@gmail.com> | 2021-04-03 19:06:41 -0400 |
commit | 30a7443be9ca61eeee3f2a2128b12598f2f3fc70 (patch) | |
tree | 6eedb21d23453ef53896127e16a7d9173699c4ff | |
parent | eb650fa38464016a5449f967bf6eba783159078a (diff) | |
download | taipan-30a7443be9ca61eeee3f2a2128b12598f2f3fc70.tar.gz |
Abort turbo mode if fighting but have no guns
-rw-r--r-- | taipan.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1266,8 +1266,8 @@ char sea_battle(char id, int num_ships) { // cputs("We have no guns"); print_msg(M_we_have_no_guns); cprint_taipan_bangbang(); - set_orders(); turbo = 0; + set_orders(); } else if (orders == 3) { choice = 0; amount = 0; @@ -1386,6 +1386,9 @@ char sea_battle(char id, int num_ships) { print_msg(M_we_got_away); cprint_taipan_bang(); good_joss_sound(); + /* don't use set_orders() here! it allows changing from Run + to Fight, *after* getting away, so you end up getting booty + when you ran. */ timed_getch(); num_ships = 0; } else { |