summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/abyss.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/abyss.cc')
-rw-r--r--crawl-ref/source/abyss.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/crawl-ref/source/abyss.cc b/crawl-ref/source/abyss.cc
index 596cf3c662..e90d47e0b4 100644
--- a/crawl-ref/source/abyss.cc
+++ b/crawl-ref/source/abyss.cc
@@ -301,11 +301,12 @@ static void _generate_area(const coord_def& topleft,
do
{
grd(*ri) = static_cast<dungeon_feature_type>(
- DNGN_ALTAR_ZIN + random2(NUM_GODS-1) );
+ DNGN_ALTAR_ZIN + random2(NUM_GODS - 1));
}
while (grd(*ri) == DNGN_ALTAR_ZIN
|| grd(*ri) == DNGN_ALTAR_SHINING_ONE
- || grd(*ri) == DNGN_ALTAR_ELYVILON);
+ || grd(*ri) == DNGN_ALTAR_ELYVILON
+ || grd(*ri) == DNGN_ALTAR_JIYVA);
// Lugonu has a flat 50% chance of corrupting the altar.
if (coinflip())