summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/view.cc
diff options
context:
space:
mode:
authorCharles Otto <ottochar@gmail.com>2009-11-11 22:31:41 -0500
committerCharles Otto <ottochar@gmail.com>2009-11-11 23:04:23 -0500
commit37ba8b3ae6c9c7f6b39e372c4dd8f305f69923be (patch)
tree40564211ce358b7531089d895770d70334bb9470 /crawl-ref/source/view.cc
parent21cc906692321fd60c3fa6ab4780ce1fa0f083c6 (diff)
downloadcrawl-ref-37ba8b3ae6c9c7f6b39e372c4dd8f305f69923be.tar.gz
crawl-ref-37ba8b3ae6c9c7f6b39e372c4dd8f305f69923be.zip
Give giant spores a chance of spawning ballistos while wandering
Give giant spores a chance of creating a ballistomycete when they move while wandering. This ability is on a timer, so they can't create more than 1 ballisto per 20 turns. Numbers may need tweaking.
Diffstat (limited to 'crawl-ref/source/view.cc')
-rw-r--r--crawl-ref/source/view.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/view.cc b/crawl-ref/source/view.cc
index c0a55da171..fc9c6cf271 100644
--- a/crawl-ref/source/view.cc
+++ b/crawl-ref/source/view.cc
@@ -135,13 +135,13 @@ void monster_grid_updates()
handle_monster_shouts(monster);
}
+ fedhas_neutralise(monster);
if (!monster->visible_to(&you))
continue;
good_god_follower_attitude_change(monster);
beogh_follower_convert(monster);
slime_convert(monster);
- fedhas_neutralise(monster);
}
}
}