From: arromdee Date: Wed, 23 Jan 2002 01:41:53 +0000 (+0000) Subject: minor things X-Git-Tag: MOVE2GIT~3384 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=af6a8574e040156d6a7d5ff480d0142197b4966f;p=nethack minor things Two unrelated tids. I wouldn't bother putting them into Beta 1. :-) --- diff --git a/doc/fixes33.2 b/doc/fixes33.2 index 387c8cdbc..9f915766b 100644 --- a/doc/fixes33.2 +++ b/doc/fixes33.2 @@ -102,7 +102,7 @@ ensure status line updates when you stop running when time is shown repairing a trap in a shop doorway must replace the broken door or wall as well sleeping steed cannot climb stairs/ladders can't change levels when mounted on a steed which is carrying the Amulet -more artifacts granted by a diety are rustproof +more artifacts granted by a deity are rustproof monster name feedback when using the m movement prefix allowed player to distinguish between peaceful and hostile monsters while hallucinating scrolls should not fade when hitting rust monsters, only from rust traps diff --git a/src/cmd.c b/src/cmd.c index 36daa8d7f..8ac53e5e3 100644 --- a/src/cmd.c +++ b/src/cmd.c @@ -572,7 +572,7 @@ wiz_level_change() int newlevel; int ret; - getlin("To what experience level do you want to be raised?", buf); + getlin("To what experience level do you want to be set?", buf); (void)mungspaces(buf); if (buf[0] == '\033' || buf[0] == '\0') ret = 0; else ret = sscanf(buf, "%d", &newlevel);