summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/dungeon.cc
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-09-26 11:27:16 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-09-26 11:27:16 +0000
commit12fa7099be089e42c8e1640eb9ac2c3c6afa97a2 (patch)
treeb472b93a2035f3911289478d7577716d7492990a /crawl-ref/source/dungeon.cc
parent32e72edca686ce0f32d70c6418055fe14d5bd248 (diff)
downloadcrawl-ref-12fa7099be089e42c8e1640eb9ac2c3c6afa97a2.tar.gz
crawl-ref-12fa7099be089e42c8e1640eb9ac2c3c6afa97a2.zip
Removed hard tabs.
Corrected sling bullet description. Targeting forward wrap-around was broken, fixed. Dropped damage bonus for kenku clawed-kick. Don't show {tried} for equipped items. Removed Elyvilon's protection from high-damage hits even when not praying. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@2207 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/dungeon.cc')
-rw-r--r--crawl-ref/source/dungeon.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/crawl-ref/source/dungeon.cc b/crawl-ref/source/dungeon.cc
index e96d23fc1e..040fa54c7c 100644
--- a/crawl-ref/source/dungeon.cc
+++ b/crawl-ref/source/dungeon.cc
@@ -6959,8 +6959,8 @@ static void build_river( dungeon_feature_type river_type ) //mv
// lava and deep water grids. -- bwr
if (!one_chance_in(200)
&& (grd[i][j] < DNGN_ENTER_SHOP
- || grd[i][j] > DNGN_EXIT_PORTAL_VAULT)
- && grd[i][j] != DNGN_EXIT_HELL // just to be safe
+ || grd[i][j] > DNGN_EXIT_PORTAL_VAULT)
+ && grd[i][j] != DNGN_EXIT_HELL // just to be safe
&& mgrd[i][j] == NON_MONSTER
&& igrd[i][j] == NON_ITEM)
{
@@ -7025,8 +7025,8 @@ static void build_lake(dungeon_feature_type lake_type) //mv
// on lava and deep water grids. -- bwr
if (!one_chance_in(200)
&& (grd[i][j] < DNGN_ENTER_SHOP
- || grd[i][j] > DNGN_EXIT_PORTAL_VAULT)
- && grd[i][j] != DNGN_EXIT_HELL // just to be safe
+ || grd[i][j] > DNGN_EXIT_PORTAL_VAULT)
+ && grd[i][j] != DNGN_EXIT_HELL // just to be safe
&& mgrd[i][j] == NON_MONSTER
&& igrd[i][j] == NON_ITEM)
{