The spellbook fadefades.

<email deleted>
<email deleted>
Sent: Saturday, March 23, 2002 6:01 AM
Subject: Bug in 3.4.0: spellbook fading


> Dip a spellbook in a fountain:
> "The spellbook fadefades."
>
> In get_wet (potion.c), otense is used, which returns "fades",
> redundantly, as a suffix to "fade".
This commit is contained in:
nethack.allison
2002-03-23 12:43:11 +00:00
parent 42a0285fa0
commit 7dcaa4d54b
2 changed files with 3 additions and 2 deletions

View File

@@ -10,6 +10,7 @@ add wishing for "nothing" and genociding "none" to the conduct section
of the Guidebook
allow both wishing and genocide to accept either "none" or "nothing" when
the player wants to decline
left word in format string in get_wet() causing "The spellbook fadefades"
Platform- and/or Interface-Specific Fixes

View File

@@ -1,4 +1,4 @@
/* SCCS Id: @(#)potion.c 3.4 2002/03/05 */
/* SCCS Id: @(#)potion.c 3.4 2002/03/23 */
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/* NetHack may be freely redistributed. See license for details. */
@@ -1480,7 +1480,7 @@ register struct obj *obj;
} else {
if (!Blind) {
boolean oq1 = obj->quan == 1L;
pline_The("spellbook%s fade%s.",
pline_The("spellbook%s %s.",
oq1 ? "" : "s", otense(obj, "fade"));
}
if(obj->unpaid && costly_spot(u.ux, u.uy)) {