summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/abyss.cc
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-03-19 17:32:28 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-03-19 17:32:28 +0000
commitdccd64f85173ad6a490b16d7b8ad83529114d401 (patch)
tree5bf31fbf42193e1bfea5f4e4d69ba2c908a88499 /crawl-ref/source/abyss.cc
parent09368bdee93d7cfeef2f2f6483a3d301239a6bff (diff)
downloadcrawl-ref-dccd64f85173ad6a490b16d7b8ad83529114d401.tar.gz
crawl-ref-dccd64f85173ad6a490b16d7b8ad83529114d401.zip
Spatial distortion heals blink frogs.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@1062 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/abyss.cc')
-rw-r--r--crawl-ref/source/abyss.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/crawl-ref/source/abyss.cc b/crawl-ref/source/abyss.cc
index a1962ce3c6..e20875375c 100644
--- a/crawl-ref/source/abyss.cc
+++ b/crawl-ref/source/abyss.cc
@@ -179,11 +179,11 @@ static void generate_area(unsigned char gx1, unsigned char gy1,
{
grd[i][j] = DNGN_ALTAR_ZIN + random2(12);
}
- while (grd[i][j] == DNGN_ALTAR_YREDELEMNUL
- || grd[i][j] == DNGN_ALTAR_VEHUMET
- || grd[i][j] == DNGN_ALTAR_NEMELEX_XOBEH);
+ while (grd[i][j] == DNGN_ALTAR_ZIN
+ || grd[i][j] == DNGN_ALTAR_SHINING_ONE
+ || grd[i][j] == DNGN_ALTAR_ELYVILON);
- // Lucy has a flat 50% chance of corrupting the altar
+ // Lugonu has a flat 50% chance of corrupting the altar
if ( coinflip() )
grd[i][j] = DNGN_ALTAR_LUGONU;
}