summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/abyss.cc
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-03-19 15:12:44 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-03-19 15:12:44 +0000
commit7027d6e07332bbdf6322e4d0c1c7aed78c2231bc (patch)
treef5ff55a0f1c6e7653e39e50b290bed10f09718ab /crawl-ref/source/abyss.cc
parent08fe0f779080a55f59b07d4ab887495220b5fd69 (diff)
downloadcrawl-ref-7027d6e07332bbdf6322e4d0c1c7aed78c2231bc.tar.gz
crawl-ref-7027d6e07332bbdf6322e4d0c1c7aed78c2231bc.zip
s/Lucy/Lugonu/.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@1060 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/abyss.cc')
-rw-r--r--crawl-ref/source/abyss.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/abyss.cc b/crawl-ref/source/abyss.cc
index eb00207c74..a1962ce3c6 100644
--- a/crawl-ref/source/abyss.cc
+++ b/crawl-ref/source/abyss.cc
@@ -50,7 +50,7 @@ void generate_abyss(void)
grd[45][35] = DNGN_FLOOR;
if ( one_chance_in(5) )
- grd[46][35] = DNGN_ALTAR_LUCY;
+ grd[46][35] = DNGN_ALTAR_LUGONU;
} // end generate_abyss()
@@ -185,7 +185,7 @@ static void generate_area(unsigned char gx1, unsigned char gy1,
// Lucy has a flat 50% chance of corrupting the altar
if ( coinflip() )
- grd[i][j] = DNGN_ALTAR_LUCY;
+ grd[i][j] = DNGN_ALTAR_LUGONU;
}
}
}
@@ -390,7 +390,7 @@ void abyss_teleport( bool new_area )
grd[you.x_pos][you.y_pos] = DNGN_FLOOR;
if ( one_chance_in(5) )
- grd[you.x_pos + 1][you.y_pos] = DNGN_ALTAR_LUCY;
+ grd[you.x_pos + 1][you.y_pos] = DNGN_ALTAR_LUGONU;
place_transiting_monsters();
}