bits (from <Someone>)
- Guidebook typo - wizard mode prompt [...] > 2/3) In Guidebook* the lines subkeyval (Win32 tty NetHackonly). > May be used to alter the value of should read subkeyval (Win32 > tty NetHack only). May be used to alter the value of > > 3/3) I miss a hint for the new wizmode feature levelteleport by > menu. Neither wizhelp nor the dialog tell you about it. Maybe if > (++trycnt == 2) Strcat(qbuf, " [type a number or ?]"); in > teleport.c:589 could provide a hint. > > <Someone>
This commit is contained in:
+7
-1
@@ -592,7 +592,13 @@ level_tele()
|
|||||||
|
|
||||||
Strcpy(qbuf, "To what level do you want to teleport?");
|
Strcpy(qbuf, "To what level do you want to teleport?");
|
||||||
do {
|
do {
|
||||||
if (++trycnt == 2) Strcat(qbuf, " [type a number]");
|
if (++trycnt == 2) {
|
||||||
|
#ifdef WIZARD
|
||||||
|
if (wizard) Strcat(qbuf, " [type a number or ? for a menu]");
|
||||||
|
else
|
||||||
|
#endif
|
||||||
|
Strcat(qbuf, " [type a number]");
|
||||||
|
}
|
||||||
getlin(qbuf, buf);
|
getlin(qbuf, buf);
|
||||||
if (!strcmp(buf,"\033")) { /* cancelled */
|
if (!strcmp(buf,"\033")) { /* cancelled */
|
||||||
if (Confusion && rnl(5)) {
|
if (Confusion && rnl(5)) {
|
||||||
|
|||||||
Reference in New Issue
Block a user