summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/enum.h
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-26 05:03:44 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-26 05:03:44 +0000
commite1ae3e2330c4ce474ae13adff5ffbb5ad073cab5 (patch)
tree0db89ca2fa753bca394697785811858e4c91f01f /crawl-ref/source/enum.h
parent07fef52005fab4d726aa04b7ca637deacbc365bd (diff)
downloadcrawl-ref-e1ae3e2330c4ce474ae13adff5ffbb5ad073cab5.tar.gz
crawl-ref-e1ae3e2330c4ce474ae13adff5ffbb5ad073cab5.zip
Since DNGN_WATER_STUCK appears to only be used as a placeholder when
generating the Shoals, rename it DNGN_WATER_RESERVED, and make grid_is_water() take it into account just in case. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@8767 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/enum.h')
-rw-r--r--crawl-ref/source/enum.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/enum.h b/crawl-ref/source/enum.h
index c1b90f8751..706bf3e247 100644
--- a/crawl-ref/source/enum.h
+++ b/crawl-ref/source/enum.h
@@ -982,7 +982,7 @@ enum dungeon_feature_type
DNGN_DEEP_WATER, // 62
DNGN_SHALLOW_WATER = 65, // 65
- DNGN_WATER_STUCK,
+ DNGN_WATER_RESERVED,
// Lowest grid value that an item can be placed on.
DNGN_MINITEM = DNGN_SHALLOW_WATER,