(unit_path): Replace mpr() with pr() as unit_path() is only called
from navigate or march command.
This commit is contained in:
parent
2b79442a82
commit
fb49865a42
1 changed files with 3 additions and 10 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue