"can't reach from steed" message bits
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.
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
/* 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. */
|
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
|
||||||
/* NetHack may be freely redistributed. See license for details. */
|
/* NetHack may be freely redistributed. See license for details. */
|
||||||
|
|
||||||
@@ -1949,8 +1949,7 @@ dopickup()
|
|||||||
You("cannot reach the bottom of the pit.");
|
You("cannot reach the bottom of the pit.");
|
||||||
#ifdef STEED
|
#ifdef STEED
|
||||||
else if (u.usteed && P_SKILL(P_RIDING) < P_BASIC)
|
else if (u.usteed && P_SKILL(P_RIDING) < P_BASIC)
|
||||||
You("aren't skilled enough to reach from %s.",
|
rider_cant_reach();
|
||||||
y_monnam(u.usteed));
|
|
||||||
#endif
|
#endif
|
||||||
else
|
else
|
||||||
You("cannot reach the %s.", surface(u.ux,u.uy));
|
You("cannot reach the %s.", surface(u.ux,u.uy));
|
||||||
|
|||||||
@@ -3269,8 +3269,7 @@ boolean force_failure;
|
|||||||
if (!can_reach_floor(TRUE)) {
|
if (!can_reach_floor(TRUE)) {
|
||||||
#ifdef STEED
|
#ifdef STEED
|
||||||
if (u.usteed && P_SKILL(P_RIDING) < P_BASIC)
|
if (u.usteed && P_SKILL(P_RIDING) < P_BASIC)
|
||||||
You("aren't skilled enough to reach from %s.",
|
rider_cant_reach();
|
||||||
mon_nam(u.usteed));
|
|
||||||
else
|
else
|
||||||
#endif
|
#endif
|
||||||
You("are unable to reach the %s!",
|
You("are unable to reach the %s!",
|
||||||
@@ -3653,8 +3652,7 @@ boolean force;
|
|||||||
}
|
}
|
||||||
#ifdef STEED
|
#ifdef STEED
|
||||||
if (u.usteed && P_SKILL(P_RIDING) < P_BASIC) {
|
if (u.usteed && P_SKILL(P_RIDING) < P_BASIC) {
|
||||||
You("aren't skilled enough to reach from %s.",
|
rider_cant_reach();
|
||||||
mon_nam(u.usteed));
|
|
||||||
return(0);
|
return(0);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
Reference in New Issue
Block a user