(unit_path): Replace mpr() with pr() as unit_path() is only called

from navigate or march command.
This commit is contained in:
Ron Koenderink 2007-01-27 02:31:08 +00:00
parent 2b79442a82
commit fb49865a42

View file

@ -139,17 +139,10 @@ unit_path(int together, struct empobj *unit, char *buf)
if (!sarg_xy(buf, &destx, &desty))
return 0;
if (!together) {
if (unit->ef_type == EF_SHIP)
mpr(unit->own,
"Cannot go to a destination sector if not all starting in the same sector\n");
else
pr("Cannot go to a destination sector if not all starting in the same sector\n");
return 0;
}
if (!getsect(destx, desty, &d_sect)) {
if (unit->ef_type == EF_SHIP)
mpr(unit->own, "%d,%d is not a sector\n", destx, desty);
else
pr("%d,%d is not a sector\n", destx, desty);
return 0;
}
@ -157,7 +150,7 @@ unit_path(int together, struct empobj *unit, char *buf)
cp = BestShipPath(buf, unit->x, unit->y,
d_sect.sct_x, d_sect.sct_y, player->cnum);
if (!cp || unit->mobil <= 0) {
mpr(unit->own, "Can't get to '%s' right now.\n",
pr("Can't get to '%s' right now.\n",
xyas(d_sect.sct_x, d_sect.sct_y, player->cnum));
return 0;
}