summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/fprop.h
diff options
context:
space:
mode:
authorCharles Otto <ottochar@gmail.com>2010-02-03 18:26:27 -0500
committerCharles Otto <ottochar@gmail.com>2010-02-03 18:26:27 -0500
commitd3e8ab7ba281588782183393f26e4fdbf8dda1fe (patch)
treefb3d5ed76f8bffc3312abe196dd578c9d1d8d986 /crawl-ref/source/fprop.h
parentdfff495eb78d0fb545f0214aeb6560bbc300f042 (diff)
downloadcrawl-ref-d3e8ab7ba281588782183393f26e4fdbf8dda1fe.tar.gz
crawl-ref-d3e8ab7ba281588782183393f26e4fdbf8dda1fe.zip
Name change - spore covered to mold covered
Call the fprop giant spores leave behind them mold instead of spores.
Diffstat (limited to 'crawl-ref/source/fprop.h')
-rw-r--r--crawl-ref/source/fprop.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/fprop.h b/crawl-ref/source/fprop.h
index d5ea8d0c93..9995ce9ca1 100644
--- a/crawl-ref/source/fprop.h
+++ b/crawl-ref/source/fprop.h
@@ -21,14 +21,14 @@ enum feature_property_type
// Squares that the tide should not affect.
FPROP_NO_TIDE = (1 << 10),
- FPROP_SPORES = (1 << 11)
+ FPROP_MOLD = (1 << 11)
};
bool is_sanctuary(const coord_def& p);
bool is_bloodcovered(const coord_def& p);
bool is_tide_immune(const coord_def &p);
-bool is_sporecovered(const coord_def & p);
+bool is_moldy(const coord_def & p);
feature_property_type str_to_fprop(const std::string &str);
#endif