From b27d66c723cb95155a65776846cab0ee11ab0d38 Mon Sep 17 00:00:00 2001 From: cohrs Date: Wed, 12 Mar 2003 07:26:13 +0000 Subject: [PATCH] blessed genocide bit A suggestion to the mailing list. If the response is more than a single letter and doesn't match any class description, don't say "symbol" in the followup message. I left "symbol" in if the response in a single character, I thought it was more helpful. --- src/read.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/read.c b/src/read.c index 2e087c0b9..b14ccad82 100644 --- a/src/read.c +++ b/src/read.c @@ -1499,7 +1499,8 @@ do_class_genocide() return; } else #endif - pline("That symbol does not represent any monster."); + pline("That %s does not represent any monster.", + strlen(buf) == 1 ? "symbol" : "response"); continue; }