From: Pasi Kallinen Date: Sat, 11 Jun 2016 19:43:55 +0000 (+0300) Subject: Change fountains to bright blue X-Git-Tag: NetHack-3.6.1_RC01~681 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2ca57b996975394e3cdfc1a8410deb278ccc0f80;p=nethack Change fountains to bright blue It's "sparkling water" after all, and makes it more obvious they're different from water. --- diff --git a/src/drawing.c b/src/drawing.c index d25b50eae..4a16c1f90 100644 --- a/src/drawing.c +++ b/src/drawing.c @@ -169,7 +169,7 @@ const struct symdef defsyms[MAXPCHARS] = { { '|', "grave", C(CLR_GRAY) }, /* grave */ { '\\', "opulent throne", C(HI_GOLD) }, /* throne */ /*30*/ { '#', "sink", C(CLR_GRAY) }, /* sink */ - { '{', "fountain", C(CLR_BLUE) }, /* fountain */ + { '{', "fountain", C(CLR_BRIGHT_BLUE) }, /* fountain */ { '}', "water", C(CLR_BLUE) }, /* pool */ { '.', "ice", C(CLR_CYAN) }, /* ice */ { '}', "molten lava", C(CLR_RED) }, /* lava */