]> granicus.if.org Git - nethack/commitdiff
objected to
authornhmall <mjnh@persona.ca>
Sat, 19 Dec 2015 01:55:24 +0000 (20:55 -0500)
committernhmall <mjnh@persona.ca>
Sat, 19 Dec 2015 01:55:24 +0000 (20:55 -0500)
doc/fixes36.1
src/read.c

index fd3dc6f814a67080872ba626ada25a7f2962b8dc..5dc93f056adcd47239aca8c9dd3e577824a4f54d 100644 (file)
@@ -44,7 +44,6 @@ allow bright aliases for colors in menucolors
 make MAXPLAYERS option in sysconf accept 0 value
 avoid hearing yelps when you are deaf
 make corpse visible if stethoscope told you about it being there
-blind pronounciation of scroll formula will not violate literacy conduct
 sceptre of might database entry word change
 
 
index a141c157bb48952580fceb87164fee23ec3b192d..1e177eaf5680180378f61c1a3ff7438ae2dbf805 100644 (file)
@@ -1,4 +1,4 @@
-/* NetHack 3.6 read.c  $NHDT-Date: 1450483329 2015/12/19 00:02:09 $  $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.129 $ */
+/* NetHack 3.6 read.c  $NHDT-Date: 1450490118 2015/12/19 01:55:18 $  $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.130 $ */
 /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
 /* NetHack may be freely redistributed.  See license for details. */
 
@@ -171,7 +171,6 @@ doread()
 {
     register struct obj *scroll;
     boolean confused, nodisappear;
-    boolean pronounced_not_read = FALSE;
 
     known = FALSE;
     if (check_capacity((char *) 0))
@@ -300,8 +299,6 @@ doread()
             what = "mystic runes";
         else if (!scroll->dknown)
             what = "formula on the scroll";
-        else if (scroll->dknown)
-            pronounced_not_read = TRUE;
         if (what) {
             pline("Being blind, you cannot read the %s.", what);
             return 0;
@@ -332,7 +329,7 @@ doread()
     /* Novel conduct is handled in read_tribute so exclude it too*/
     if (scroll->otyp != SPE_BOOK_OF_THE_DEAD
         && scroll->otyp != SPE_BLANK_PAPER && scroll->otyp != SCR_BLANK_PAPER
-        && scroll->otyp != SPE_NOVEL && !pronounced_not_read)
+        && scroll->otyp != SPE_NOVEL)
         u.uconduct.literate++;
 
     if (scroll->oclass == SPBOOK_CLASS) {