From fb49865a42e5b35db220a855a204399a4c6f1bbc Mon Sep 17 00:00:00 2001 From: Ron Koenderink Date: Sat, 27 Jan 2007 02:31:08 +0000 Subject: [PATCH] (unit_path): Replace mpr() with pr() as unit_path() is only called from navigate or march command. --- src/lib/subs/unitsub.c | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/src/lib/subs/unitsub.c b/src/lib/subs/unitsub.c index b7c6a8fb..f3efe0d1 100644 --- a/src/lib/subs/unitsub.c +++ b/src/lib/subs/unitsub.c @@ -139,25 +139,18 @@ 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"); + 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); + pr("%d,%d is not a sector\n", destx, desty); return 0; } if (unit->ef_type == EF_SHIP) { 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; }