]> git.pond.sub.org Git - empserver/commitdiff
Improve newcap's origin error message
authorMarkus Armbruster <armbru@pond.sub.org>
Sun, 30 Oct 2011 07:17:58 +0000 (08:17 +0100)
committerMarkus Armbruster <armbru@pond.sub.org>
Thu, 29 Dec 2011 10:47:05 +0000 (11:47 +0100)
src/lib/commands/new.c

index 8fb676c8dd47ad4f105151100d9d5d47e217b8b3..f7f3ff48b42f3a5b5173c2df0101aee99be70bd3 100644 (file)
@@ -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? ")))