From 064ee2021b9b9059e512a7d4b64f71b8bb6f1fc1 Mon Sep 17 00:00:00 2001 From: PatR Date: Wed, 28 Sep 2022 15:19:41 -0700 Subject: [PATCH] more genocide prompts Make the prompt for single genocide be more precise from: What monster do you want to genocide? _to_: What type of monster do you want to genocide? and the re-prompt for it be slightly more verbose from: What... [type the name of a monster] _to_: What... [enter the name of a type of monster] Also, make the already verbose re-prompt for class genocide even more verbose from: What class... [type the symbol representing a class] _to_: What class... [type the symbol or name representing a class] Possibly should have changed 'type' to 'enter' on the last one to keep them consistent but I left that as-is. --- src/read.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/read.c b/src/read.c index 5f9a23641..937f3b191 100644 --- a/src/read.c +++ b/src/read.c @@ -2473,7 +2473,8 @@ do_class_genocide(void) } Strcpy(promptbuf, "What class of monsters do you want to genocide?"); if (iflags.cmdassist && j > 0) - Strcat(promptbuf, " [type the symbol representing a class]"); + Strcat(promptbuf, + " [type the symbol or name representing a class]"); getlin(promptbuf, buf); (void) mungspaces(buf); /* choosing "none" preserves genocideless conduct */ @@ -2653,9 +2654,9 @@ do_genocide(int how) pline1(thats_enough_tries); return; } - Strcpy(promptbuf, "What monster do you want to genocide?"); + Strcpy(promptbuf, "What type of monster do you want to genocide?"); if (iflags.cmdassist && i > 0) - Strcat(promptbuf, " [type the name of a monster]"); + Strcat(promptbuf, " [enter the name of a type of monster]"); getlin(promptbuf, buf); (void) mungspaces(buf); /* choosing "none" preserves genocideless conduct */