From 2772b099eb5041b1a3b77f26b5d9305fc8e4850f Mon Sep 17 00:00:00 2001 From: "nethack.rankin" Date: Sat, 2 Jun 2007 23:18:56 +0000 Subject: [PATCH] punctuation tidbit The prompt to a hero with lycanthropy and polymorph control about whether to change into beast form had an extra space between the question and the [yn] answer choices. --- src/were.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/were.c b/src/were.c index fd1648c30..86da20063 100644 --- a/src/were.c +++ b/src/were.c @@ -1,4 +1,4 @@ -/* SCCS Id: @(#)were.c 3.5 2007/04/07 */ +/* SCCS Id: @(#)were.c 3.5 2007/06/02 */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ /* NetHack may be freely redistributed. See license for details. */ @@ -160,7 +160,7 @@ you_were() if (Unchanging || (u.umonnum == u.ulycn)) return; if (Polymorph_control) { /* `+4' => skip "were" prefix to get name of beast */ - Sprintf(qbuf, "Do you want to change into %s? ", + Sprintf(qbuf, "Do you want to change into %s?", an(mons[u.ulycn].mname+4)); if(yn(qbuf) == 'n') return; }