summaryrefslogtreecommitdiffstats
path: root/crawl-ref
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-01-03 21:54:07 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-01-03 21:54:07 +0000
commitee7b2c694b01f28312b631223cae34bc447293d6 (patch)
treebc958ab6569966966aca833ddb62f39bc3cd4f7a /crawl-ref
parentd107e792196a1eba3e5dd2c3c50a0454ac68088d (diff)
downloadcrawl-ref-ee7b2c694b01f28312b631223cae34bc447293d6.tar.gz
crawl-ref-ee7b2c694b01f28312b631223cae34bc447293d6.zip
Revert r3175, as killer bees and killer bee larvae are single species,
and also mark queen bees as native to the Hive. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@3178 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref')
-rw-r--r--crawl-ref/source/monstuff.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/crawl-ref/source/monstuff.cc b/crawl-ref/source/monstuff.cc
index c4d0cce55e..b7bb5ba34a 100644
--- a/crawl-ref/source/monstuff.cc
+++ b/crawl-ref/source/monstuff.cc
@@ -5020,8 +5020,9 @@ static bool is_native_in_branch(const monsters *monster, const branch_type branc
return false;
case BRANCH_HIVE:
- if (mons_species(monster->type) == MONS_KILLER_BEE
- || mons_species(monster->type) == MONS_KILLER_BEE_LARVA)
+ if (monster->type == MONS_KILLER_BEE
+ || monster->type == MONS_KILLER_BEE_LARVA
+ || monster->type == MONS_QUEEN_BEE)
{
return true;
}