summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/monster.cc
diff options
context:
space:
mode:
authorCharles Otto <ottochar@gmail.com>2009-11-13 01:26:44 -0500
committerCharles Otto <ottochar@gmail.com>2009-11-13 01:34:35 -0500
commit5e448f7064f29d42f4d22e177c05acdae0da2d5c (patch)
tree180076df8072b2a0a0dd5954266476779f324811 /crawl-ref/source/monster.cc
parentca7c789cfc9b71a331e06891c084e254c749d9be (diff)
downloadcrawl-ref-5e448f7064f29d42f4d22e177c05acdae0da2d5c.tar.gz
crawl-ref-5e448f7064f29d42f4d22e177c05acdae0da2d5c.zip
Messaging and code formatting (+comment) improvements.
Diffstat (limited to 'crawl-ref/source/monster.cc')
-rw-r--r--crawl-ref/source/monster.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/monster.cc b/crawl-ref/source/monster.cc
index 869e65ce68..393985e1ef 100644
--- a/crawl-ref/source/monster.cc
+++ b/crawl-ref/source/monster.cc
@@ -5024,14 +5024,14 @@ void monsters::apply_enchantment(const mon_enchant &me)
env.mons[rc].number = 20;
if (observe_cell(adjacent) && observe_cell(pos()))
- mpr("A nearby fungus spawns a giant spore.");
+ mpr("A ballistomycete spawns a giant spore.");
deactivate_ballistos();
}
break;
}
}
- // Re=add the enchantment (this resets the spore production
+ // Re-add the enchantment (this resets the spore production
// timer).
this->add_ench(ENCH_SPORE_PRODUCTION);
}
@@ -6060,7 +6060,7 @@ int mon_enchant::calc_duration(const monsters *mons,
case ENCH_SPORE_PRODUCTION:
// The duration of the spore production timer depends on the color
// of the fungus
- cturn = mons->number ? 150 : 1500;
+ cturn = 150;
break;
case ENCH_ABJ: