]> granicus.if.org Git - nethack/commitdiff
Make graves white
authorPasi Kallinen <paxed@alt.org>
Thu, 15 Mar 2018 16:42:22 +0000 (18:42 +0200)
committerPasi Kallinen <paxed@alt.org>
Thu, 15 Mar 2018 16:42:25 +0000 (18:42 +0200)
Making them easy to distinguish from walls.

doc/fixes36.1
src/drawing.c

index c01208ca73427394844691c513b16417c84e3025..caf40ec871e6a9e8643839bf827d865427f995c3 100644 (file)
@@ -741,7 +741,7 @@ swallowers can't re-engulf hero immediately after spitting him/her out
 werejackals can summon foxes and coyotes; werewolves can summon wargs
 allow taming monkeys and apes with bananas
 GENERICUSERS is now a sysconf statement instead of compile-time option
-fountains are bright blue
+fountains are bright blue, graves are white
 ray bounceback chance depends on the wall type
 undead #turning takes less time at higher experience level
 peacefuls may react when you attack other peacefuls
index 88bc26750f3f79e24453d8fc334668da38bf7aa0..d81ffa2c9d7ba5971c0a5ce624a96f6589717525 100644 (file)
@@ -166,7 +166,7 @@ const struct symdef defsyms[MAXPCHARS] = {
        { '<', "ladder up", C(CLR_BROWN) },           /* upladder */
        { '>', "ladder down", C(CLR_BROWN) },         /* dnladder */
        { '_', "altar", C(CLR_GRAY) },                /* altar */
-       { '|', "grave", C(CLR_GRAY) },                /* grave */
+       { '|', "grave", C(CLR_WHITE) },               /* grave */
        { '\\', "opulent throne", C(HI_GOLD) },       /* throne */
 /*30*/ { '#', "sink", C(CLR_GRAY) },                 /* sink */
        { '{', "fountain", C(CLR_BRIGHT_BLUE) },      /* fountain */