From 62c271f21b2aecb926a7ed0ed465cb6404bcddb5 Mon Sep 17 00:00:00 2001 From: PatR Date: Fri, 13 Dec 2019 14:01:28 -0800 Subject: [PATCH] polymorphed steed phrasing When you ride your steed into a polymorph trap and it changes into a creature that can still wear the saddle, the message is |You have to adjust youself in the saddle on . which sounds as if the game is telling the player that he or she needs to do something. Simplify it to |You adjust yourself in the saddle on . --- src/trap.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/trap.c b/src/trap.c index 51436d47a..941025654 100644 --- a/src/trap.c +++ b/src/trap.c @@ -1,4 +1,4 @@ -/* NetHack 3.6 trap.c $NHDT-Date: 1569189770 2019/09/22 22:02:50 $ $NHDT-Branch: NetHack-3.6 $:$NHDT-Revision: 1.317 $ */ +/* NetHack 3.6 trap.c $NHDT-Date: 1576274483 2019/12/13 22:01:23 $ $NHDT-Branch: NetHack-3.6 $:$NHDT-Revision: 1.325 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ /*-Copyright (c) Robert Patrick Rankin, 2013. */ /* NetHack may be freely redistributed. See license for details. */ @@ -1639,7 +1639,7 @@ struct obj *otmp; SUPPRESS_SADDLE, FALSE)); if (mdat != steed->data) (void) strsubst(buf, "your ", "your new "); - You("have to adjust yourself in the saddle on %s.", buf); + You("adjust yourself in the saddle on %s.", buf); } } steedhit = TRUE;