summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-07-19 14:20:37 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-07-19 14:20:37 +0000
commite2a965b338f8a9b519a86fc58f808bfed7959682 (patch)
tree5a16d5feeffb33fbb14d5609875e4168cb783c88
parent4e68d68230e5ea653f735bd6bbde44d28440a1f4 (diff)
downloadcrawl-ref-e2a965b338f8a9b519a86fc58f808bfed7959682.tar.gz
crawl-ref-e2a965b338f8a9b519a86fc58f808bfed7959682.zip
Backport the royal jelly's having a god from trunk (but make it
nameless, to match Dissolution). git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/branches/stone_soup-0.5@10313 c06c8d41-db1a-0410-9941-cceddc491573
-rw-r--r--crawl-ref/source/monplace.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/crawl-ref/source/monplace.cc b/crawl-ref/source/monplace.cc
index 4ae4ce9cff..358fae4dbd 100644
--- a/crawl-ref/source/monplace.cc
+++ b/crawl-ref/source/monplace.cc
@@ -1074,6 +1074,9 @@ static int _place_monster_aux(const mgen_data &mg,
if (!one_chance_in(7))
menv[id].god = GOD_BEOGH;
}
+ // The royal jelly belongs to the Slime God.
+ else if (mg.cls == MONS_ROYAL_JELLY)
+ menv[id].god = GOD_NAMELESS;
// Angels and Daevas belong to TSO, but 1 out of 7 in the Abyss are
// adopted by Xom.
else if (mons_class_holiness(mg.cls) == MH_HOLY)