summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/initfile.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/initfile.cc')
-rw-r--r--crawl-ref/source/initfile.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/crawl-ref/source/initfile.cc b/crawl-ref/source/initfile.cc
index 08d7c4a55c..8109534c03 100644
--- a/crawl-ref/source/initfile.cc
+++ b/crawl-ref/source/initfile.cc
@@ -786,6 +786,7 @@ void game_options::reset_options()
sc_format = -1;
friend_brand = CHATTR_NORMAL;
+ neutral_brand = CHATTR_NORMAL;
stab_brand = CHATTR_NORMAL;
may_stab_brand = CHATTR_NORMAL;
heap_brand = CHATTR_REVERSE;
@@ -1903,6 +1904,10 @@ void game_options::read_option_line(const std::string &str, bool runscript)
// As a suggestion, try "rxvt -rv -fn 10x20" under Un*xes
friend_brand = curses_attribute(field);
}
+ else if (key == "neutral_brand")
+ {
+ neutral_brand = curses_attribute(field);
+ }
else if (key == "stab_brand")
{
stab_brand = curses_attribute(field);