navigate march: Drop do_unit_move() parameter together

It's always non-zero now.

Signed-off-by: Markus Armbruster <armbru@pond.sub.org>
This commit is contained in:
Markus Armbruster 2014-12-28 22:32:23 +01:00
parent a024dbb8a3
commit 6502ac2a8f
3 changed files with 6 additions and 9 deletions

View file

@ -44,7 +44,6 @@ march(void)
struct nstr_item ni_land;
struct emp_qelem land_list;
double minmob, maxmob;
int together = 1;
if (!snxtitem(&ni_land, EF_LAND, player->argp[1], NULL))
return RET_SYN;
@ -54,5 +53,5 @@ march(void)
pr("No lands\n");
return RET_FAIL;
}
return do_unit_move(&land_list, &together, &minmob, &maxmob);
return do_unit_move(&land_list, &minmob, &maxmob);
}