summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/enum.h
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-05-19 19:01:25 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-05-19 19:01:25 +0000
commit5f61c3caf7af3eee7467d860d4b284bbcd7b6f70 (patch)
treed33179e3fb1621d71e748bbccc7fa37f505eec21 /crawl-ref/source/enum.h
parent0ee4e39dafef899a70bb27ad6604cc3e642f3753 (diff)
downloadcrawl-ref-5f61c3caf7af3eee7467d860d4b284bbcd7b6f70.tar.gz
crawl-ref-5f61c3caf7af3eee7467d860d4b284bbcd7b6f70.zip
Fix 1858979: Monsters being capable to reach through wallsl.
(And some cleanup.) git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5136 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/enum.h')
-rw-r--r--crawl-ref/source/enum.h17
1 files changed, 10 insertions, 7 deletions
diff --git a/crawl-ref/source/enum.h b/crawl-ref/source/enum.h
index b751effce0..c77ab2098b 100644
--- a/crawl-ref/source/enum.h
+++ b/crawl-ref/source/enum.h
@@ -860,9 +860,8 @@ enum dungeon_feature_type
DNGN_CLEAR_ROCK_WALL, // 9 - Transparent
DNGN_CLEAR_STONE_WALL, // 10 - Transparent
DNGN_CLEAR_PERMAROCK_WALL, // 11 - Transparent
- DNGN_ORCISH_IDOL, // 12 - Can see past
- // XXX: lowest/highest grid value which is a wall
+ // lowest/highest grid value which is a wall
DNGN_MINWALL = DNGN_WAX_WALL,
DNGN_MAXWALL = DNGN_CLEAR_PERMAROCK_WALL,
@@ -870,17 +869,21 @@ enum dungeon_feature_type
DNGN_RNDWALL_MIN = DNGN_METAL_WALL,
DNGN_RNDWALL_MAX = DNGN_STONE_WALL,
- // XXX: highest grid value which is opaque
+ // highest grid value which is opaque
DNGN_MAXOPAQUE = DNGN_PERMAROCK_WALL,
- // XXX: lowest grid value which can be seen through
+ // lowest grid value which can be seen through
DNGN_MINSEE = DNGN_CLEAR_ROCK_WALL,
+ // highest grid value which can't be reached through
+ DNGN_MAX_NONREACH = DNGN_CLEAR_PERMAROCK_WALL,
+
+ // Can be seen through and reached past.
+ DNGN_ORCISH_IDOL = 12,
DNGN_GRANITE_STATUE = 21, // 21
- DNGN_STATUE_RESERVED_1,
- DNGN_STATUE_RESERVED_2,
+ DNGN_STATUE_RESERVED,
- // XXX: lowest grid value which can be passed by walking etc.
+ // lowest grid value which can be passed by walking etc.
DNGN_MINMOVE = 31,
DNGN_LAVA = 61, // 61