These should have been included with a "#dipping from steed" patch
three years ago. I don't know whether I missed them outright, neglected
to cut diffs at the time, or just forgot to apply the diffs to my cvs
directory prior to committing the rest of that patch.
-/* SCCS Id: @(#)hack.c 3.5 2005/06/02 */
+/* SCCS Id: @(#)hack.c 3.5 2005/12/16 */
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/* NetHack may be freely redistributed. See license for details. */
You("cannot reach the bottom of the pit.");
#ifdef STEED
else if (u.usteed && P_SKILL(P_RIDING) < P_BASIC)
- You("aren't skilled enough to reach from %s.",
- y_monnam(u.usteed));
+ rider_cant_reach();
#endif
else
You("cannot reach the %s.", surface(u.ux,u.uy));
if (!can_reach_floor(TRUE)) {
#ifdef STEED
if (u.usteed && P_SKILL(P_RIDING) < P_BASIC)
- You("aren't skilled enough to reach from %s.",
- mon_nam(u.usteed));
+ rider_cant_reach();
else
#endif
You("are unable to reach the %s!",
}
#ifdef STEED
if (u.usteed && P_SKILL(P_RIDING) < P_BASIC) {
- You("aren't skilled enough to reach from %s.",
- mon_nam(u.usteed));
+ rider_cant_reach();
return(0);
}
#endif