From: Markus Armbruster Date: Sun, 30 Oct 2011 07:17:58 +0000 (+0100) Subject: Improve newcap's origin error message X-Git-Tag: v4.3.29~39 X-Git-Url: http://git.pond.sub.org/?p=empserver;a=commitdiff_plain;h=9b2e906ea1c330c14be1d64bc714c174527d9132 Improve newcap's origin error message --- diff --git a/src/lib/commands/new.c b/src/lib/commands/new.c index 8fb676c8d..f7f3ff48b 100644 --- a/src/lib/commands/new.c +++ b/src/lib/commands/new.c @@ -55,7 +55,8 @@ new(void) natp = getnatp(player->cnum); if (natp->nat_xorg != 0 || natp->nat_yorg != 0) { - pr("Must be at 0,0 to add a new country\n"); + pr("Origin must be reset to add a new country.\n"); + pr("Use `origin ~' to reset it.\n"); return RET_FAIL; } if (!(natp = natargp(player->argp[1], "Country? ")))