summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mon-info.cc
diff options
context:
space:
mode:
authorShmuale Mark <shm.mark@gmail.com>2014-05-05 12:29:27 -0400
committerShmuale Mark <shm.mark@gmail.com>2014-05-05 12:31:03 -0400
commitc60bd48a684feb13338653d1ba17550a92e48199 (patch)
treeec655f614aefdb14ffbe5e2cf1eb5c3987677909 /crawl-ref/source/mon-info.cc
parentd505f06e73b93a49d3582af59a41ae59f984a4a6 (diff)
downloadcrawl-ref-c60bd48a684feb13338653d1ba17550a92e48199.tar.gz
crawl-ref-c60bd48a684feb13338653d1ba17550a92e48199.zip
Remove two outdated functions from Control Winds.
It previously put out forest fires, which made sense in Forest but is mostly a rare special case now. It also gave friendlies ENCH_WIND _AIDED, which was supposed to increase their ranged accuracy. Since spriggan air mages aren't around fauns and satyrs anymore, there's no need for it. I didn't actually remove the code for the effects of ENCH_WIND_AIDED, since I couldn't find them. Either it was never actually implemented or I was missing something obvious.
Diffstat (limited to 'crawl-ref/source/mon-info.cc')
-rw-r--r--crawl-ref/source/mon-info.cc4
1 files changed, 0 insertions, 4 deletions
diff --git a/crawl-ref/source/mon-info.cc b/crawl-ref/source/mon-info.cc
index 5fad976ec8..443f9eb9c0 100644
--- a/crawl-ref/source/mon-info.cc
+++ b/crawl-ref/source/mon-info.cc
@@ -174,8 +174,6 @@ static monster_info_flags ench_to_mb(const monster& mons, enchant_type ench)
return MB_DIMENSION_ANCHOR;
case ENCH_CONTROL_WINDS:
return MB_CONTROL_WINDS;
- case ENCH_WIND_AIDED:
- return MB_WIND_AIDED;
case ENCH_TOXIC_RADIANCE:
return MB_TOXIC_RADIANCE;
case ENCH_GRASPING_ROOTS:
@@ -1579,8 +1577,6 @@ vector<string> monster_info::attributes() const
v.push_back("unable to translocate");
if (is(MB_CONTROL_WINDS))
v.push_back("controlling the winds");
- if (is(MB_WIND_AIDED))
- v.push_back("aim guided by the winds");
if (is(MB_TOXIC_RADIANCE))
v.push_back("radiating toxic energy");
if (is(MB_GRASPING_ROOTS))