a knight applying a lance did not do a caitiff check
blessed gain level when already at level 30 won't reduce experience points
keep counting spell skill exercise even after expert status is reached
+when a fountain dries up or a throne vanishes, make sure it really happens
Platform- and/or Interface-Specific Fixes
-/* SCCS Id: @(#)fountain.c 3.4 2001/09/06 */
+/* SCCS Id: @(#)fountain.c 3.4 2002/07/10 */
/* Copyright Scott R. Turner, srt@ucla, 10/27/86 */
/* NetHack may be freely redistributed. See license for details. */
return;
}
#endif
- if (cansee(x,y)) pline_The("fountain dries up!");
+ /* replace the fountain with ordinary floor */
levl[x][y].typ = ROOM;
levl[x][y].looted = 0;
levl[x][y].blessedftn = 0;
+ if (cansee(x,y)) pline_The("fountain dries up!");
/* The location is seen if the hero/monster is invisible */
/* or felt if the hero is blind. */
newsym(x, y);
-/* SCCS Id: @(#)sit.c 3.4 2000/11/09 */
+/* SCCS Id: @(#)sit.c 3.4 2002/07/12 */
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/* NetHack may be freely redistributed. See license for details. */
if (!rn2(3) && IS_THRONE(levl[u.ux][u.uy].typ)) {
/* may have teleported */
- pline_The("throne vanishes in a puff of logic.");
levl[u.ux][u.uy].typ = ROOM;
+ pline_The("throne vanishes in a puff of logic.");
newsym(u.ux,u.uy);
}