From 5589a16d7426e9477d72871b414b12941fe588d8 Mon Sep 17 00:00:00 2001 From: PatR Date: Sat, 14 Sep 2019 18:00:39 -0700 Subject: [PATCH] github pull request - "You are [.]" Fixes #215 A post-3.6.2 change added a message for life-saving which lack its end of sentence punctuation. --- doc/fixes36.3 | 4 +++- src/hack.c | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/doc/fixes36.3 b/doc/fixes36.3 index f00cc3e29..6959edf19 100644 --- a/doc/fixes36.3 +++ b/doc/fixes36.3 @@ -1,4 +1,4 @@ -$NHDT-Branch: NetHack-3.6 $:$NHDT-Revision: 1.110 $ $NHDT-Date: 1567805962 2019/09/06 21:39:22 $ +$NHDT-Branch: NetHack-3.6 $:$NHDT-Revision: 1.112 $ $NHDT-Date: 1568509226 2019/09/15 01:00:26 $ This fixes36.3 file is here to capture information about updates in the 3.6.x lineage following the release of 3.6.2 in May 2019. Please note, however, @@ -157,6 +157,8 @@ wizard mode ^I "not carrying anything" still claimed "not carrying anything" if "(all items are already identified)" was given monster throwing from stack of missiles (darts, daggers, spears) would cause crash if it wasn't wielding a weapon (bug in multi-shot shooting fix) +surviving death while polymorphed would yield "You are a " without + terminating period curses: sometimes the message window would show a blank line after a prompt curses: the change to show map in columns 1..79 instead of 2..80 made the highlight for '@' show up in the wrong place if clipped map had been diff --git a/src/hack.c b/src/hack.c index 718eea8bf..7bae18567 100644 --- a/src/hack.c +++ b/src/hack.c @@ -1,4 +1,4 @@ -/* NetHack 3.6 hack.c $NHDT-Date: 1565288730 2019/08/08 18:25:30 $ $NHDT-Branch: NetHack-3.6 $:$NHDT-Revision: 1.215 $ */ +/* NetHack 3.6 hack.c $NHDT-Date: 1568509227 2019/09/15 01:00:27 $ $NHDT-Branch: NetHack-3.6 $:$NHDT-Revision: 1.216 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ /*-Copyright (c) Derek S. Ray, 2015. */ /* NetHack may be freely redistributed. See license for details. */ @@ -2909,7 +2909,7 @@ const char *msg_override; if life-saved while poly'd and Unchanging (explore or wizard mode declining to die since can't be both Unchanging and Lifesaved) */ if (Upolyd && !strncmpi(nomovemsg, "You survived that ", 18)) - You("are %s", an(mons[u.umonnum].mname)); /* (ignore Hallu) */ + You("are %s.", an(mons[u.umonnum].mname)); /* (ignore Hallu) */ } nomovemsg = 0; u.usleep = 0;