summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mon-cast.cc
diff options
context:
space:
mode:
authorShmuale Mark <shm.mark@gmail.com>2014-04-29 17:36:52 -0400
committerShmuale Mark <shm.mark@gmail.com>2014-04-29 17:38:24 -0400
commit854206a97f0041d8b4ad217dd424c1e1699095fb (patch)
tree5b055ac21d7f3452e70ac662ddd2aec1fe0a6624 /crawl-ref/source/mon-cast.cc
parent5a3139e65b238e297078db563c6a619601496bbb (diff)
downloadcrawl-ref-854206a97f0041d8b4ad217dd424c1e1699095fb.tar.gz
crawl-ref-854206a97f0041d8b4ad217dd424c1e1699095fb.zip
Remove grizzly bears.
They were almost identical to polar bears, which at least had the distinguishing (from black bears) to swim and be at home in an ice cave.
Diffstat (limited to 'crawl-ref/source/mon-cast.cc')
-rw-r--r--crawl-ref/source/mon-cast.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/mon-cast.cc b/crawl-ref/source/mon-cast.cc
index 3520c51d25..d18049a7f2 100644
--- a/crawl-ref/source/mon-cast.cc
+++ b/crawl-ref/source/mon-cast.cc
@@ -5116,8 +5116,8 @@ void mons_cast(monster* mons, bolt &pbolt, spell_type spell_cast,
}
else
{
- monster_type berserkers[7] = { MONS_BLACK_BEAR, MONS_GRIZZLY_BEAR, MONS_OGRE,
- MONS_TROLL, MONS_HILL_GIANT, MONS_DEEP_TROLL,
+ monster_type berserkers[7] = { MONS_BLACK_BEAR, MONS_OGRE, MONS_TROLL,
+ MONS_HILL_GIANT, MONS_DEEP_TROLL,
MONS_TWO_HEADED_OGRE};
to_summon = RANDOM_ELEMENT(berserkers);
}