summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/zotdef.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/zotdef.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/zotdef.cc')
-rw-r--r--crawl-ref/source/zotdef.cc7
1 files changed, 3 insertions, 4 deletions
diff --git a/crawl-ref/source/zotdef.cc b/crawl-ref/source/zotdef.cc
index 7c817f8eae..139a8b7b5b 100644
--- a/crawl-ref/source/zotdef.cc
+++ b/crawl-ref/source/zotdef.cc
@@ -351,7 +351,7 @@ static void _hell_beast_wave(int power)
wave_name("HELL BEAST WAVE");
monster_type bst[] = {MONS_HELL_BEAST, END};
_zotdef_fill_from_list(bst, 0, power); // full
- _zotdef_danger_msg("A hideous howling noise can be heard in the distance!");
+ _zotdef_danger_msg("A hideous barking noise can be heard in the distance!");
}
static void _frog_wave(int power)
@@ -367,9 +367,8 @@ static void _frog_wave(int power)
static void _bear_wave(int power)
{
wave_name("BEAR WAVE");
- monster_type bears[] = {MONS_GRIZZLY_BEAR, MONS_POLAR_BEAR,
- MONS_BLACK_BEAR, END};
- monster_type boss[] = {MONS_GRIZZLY_BEAR, MONS_POLAR_BEAR, END};
+ monster_type bears[] = {MONS_POLAR_BEAR, MONS_BLACK_BEAR, END};
+ monster_type boss[] = {MONS_POLAR_BEAR, END};
_zotdef_fill_from_list(bears, 0, power); // full
_zotdef_choose_boss(boss, power);
_zotdef_danger_msg("Gravelly voices can be heard calling for porridge!");