diff options
-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 { |