summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/monster.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/monster.cc')
-rw-r--r--crawl-ref/source/monster.cc15
1 files changed, 2 insertions, 13 deletions
diff --git a/crawl-ref/source/monster.cc b/crawl-ref/source/monster.cc
index b3fda3a9d7..4b706d8a47 100644
--- a/crawl-ref/source/monster.cc
+++ b/crawl-ref/source/monster.cc
@@ -5010,23 +5010,12 @@ void monsters::apply_enchantment(const mon_enchant &me)
if (rc != -1)
{
env.mons[rc].behaviour = BEH_WANDER;
- env.mons[rc].number = 10;
+ env.mons[rc].number = 20;
if (observe_cell(adjacent) && observe_cell(pos()))
mpr("A nearby fungus spawns a giant spore.");
- // Decrease the count and maybe become inactive
- // again
- if(this->number)
- {
- this->number--;
- if(this->number == 0)
- {
- this->colour = MAGENTA;
- if(you.can_see(this))
- mprf("A nearby ballistomycete calms down.");
- }
- }
+ deactivate_ballistos();
}
break;
}