summaryrefslogtreecommitdiffstats
path: root/crawl-ref
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-01-03 21:56:40 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-01-03 21:56:40 +0000
commit29472d3df5faaebd80fcc9d332e3ab04c8ada571 (patch)
tree0ae6c837acfb3a1af482b7a909896743bff1e729 /crawl-ref
parentee7b2c694b01f28312b631223cae34bc447293d6 (diff)
downloadcrawl-ref-29472d3df5faaebd80fcc9d332e3ab04c8ada571.tar.gz
crawl-ref-29472d3df5faaebd80fcc9d332e3ab04c8ada571.zip
Reorder the list of monsters native to the Hive.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@3179 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref')
-rw-r--r--crawl-ref/source/monstuff.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/monstuff.cc b/crawl-ref/source/monstuff.cc
index b7bb5ba34a..e9291761cd 100644
--- a/crawl-ref/source/monstuff.cc
+++ b/crawl-ref/source/monstuff.cc
@@ -5020,8 +5020,8 @@ static bool is_native_in_branch(const monsters *monster, const branch_type branc
return false;
case BRANCH_HIVE:
- if (monster->type == MONS_KILLER_BEE
- || monster->type == MONS_KILLER_BEE_LARVA
+ if (monster->type == MONS_KILLER_BEE_LARVA
+ || monster->type == MONS_KILLER_BEE
|| monster->type == MONS_QUEEN_BEE)
{
return true;