summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mon-util.cc
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-10-25 09:49:39 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-10-25 09:49:39 +0000
commitaed21b5eb6dd5422b50ecb46617f2da16f108965 (patch)
treeca38d8f0a9e58eeba9a0a1243669ea83ea988a92 /crawl-ref/source/mon-util.cc
parentd629a6a0ab679fb6728d2b632fe4bea13fcd3a0b (diff)
downloadcrawl-ref-aed21b5eb6dd5422b50ecb46617f2da16f108965.tar.gz
crawl-ref-aed21b5eb6dd5422b50ecb46617f2da16f108965.zip
[1810433] Ogre hunters start with large rocks. Monster ogres can also throw large rocks but are never generated with rocks.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@2545 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/mon-util.cc')
-rw-r--r--crawl-ref/source/mon-util.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/mon-util.cc b/crawl-ref/source/mon-util.cc
index 55bf9cd110..3ada5a9d14 100644
--- a/crawl-ref/source/mon-util.cc
+++ b/crawl-ref/source/mon-util.cc
@@ -2647,8 +2647,8 @@ item_def *monsters::weapon(int which_attack)
bool monsters::can_throw_rocks() const
{
- return (type == MONS_STONE_GIANT || type == MONS_CYCLOPS ||
- type == MONS_POLYPHEMUS);
+ return (type == MONS_STONE_GIANT || type == MONS_CYCLOPS
+ || type == MONS_OGRE || type == MONS_POLYPHEMUS);
}
bool monsters::has_spell_of_type(unsigned disciplines) const