summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/fprop.cc
diff options
context:
space:
mode:
authorVsevolod Kozlov <zaba@wybt.net>2011-01-05 15:33:49 +0300
committerVsevolod Kozlov <zaba@wybt.net>2011-01-05 16:00:42 +0300
commit420356ef35b368bd9687e27c984f7361401254e4 (patch)
tree037b7319efc35cf52d67a7a83fac4da9330181a3 /crawl-ref/source/fprop.cc
parent8d117f150f40dbac8bdbce5b5a5e65910d501180 (diff)
downloadcrawl-ref-420356ef35b368bd9687e27c984f7361401254e4.tar.gz
crawl-ref-420356ef35b368bd9687e27c984f7361401254e4.zip
Let str_to_fprop handle FPROP_HIGHLIGHT.
Diffstat (limited to 'crawl-ref/source/fprop.cc')
-rw-r--r--crawl-ref/source/fprop.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/crawl-ref/source/fprop.cc b/crawl-ref/source/fprop.cc
index 4d7a352827..69f9209ac1 100644
--- a/crawl-ref/source/fprop.cc
+++ b/crawl-ref/source/fprop.cc
@@ -53,6 +53,8 @@ feature_property_type str_to_fprop(const std::string &str)
{
if (str == "bloody")
return (FPROP_BLOODY);
+ if (str == "highlight")
+ return (FPROP_HIGHLIGHT);
if (str == "mold")
return (FPROP_MOLD);
if (str == "no_cloud_gen")