From a3b52a748ca5a86182c2f1c47c307bfa3371900f Mon Sep 17 00:00:00 2001 From: Markus Armbruster Date: Tue, 21 Nov 2006 22:26:30 +0000 Subject: [PATCH] Fix rev. 1.24, which failed to charge mobility for sweeping without moving. --- src/lib/commands/navi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/commands/navi.c b/src/lib/commands/navi.c index b15f1d53..4330f90c 100644 --- a/src/lib/commands/navi.c +++ b/src/lib/commands/navi.c @@ -176,7 +176,7 @@ navi(void) shp_list(&ship_list); break; case 'm': - stopping |= shp_sweep(&ship_list, 1, 0, player->cnum); + stopping |= shp_sweep(&ship_list, 1, 1, player->cnum); break; case 'r': radar(EF_SHIP);