summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tilepick.cc
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2009-07-15 21:54:04 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2009-07-15 21:54:04 +0000
commit419037df3337c41f70d12818c780a52b691265d2 (patch)
tree1dc192b506c0644f171cc984e200b907773aa7a0 /crawl-ref/source/tilepick.cc
parent22fdbcb9d201b4b0e85ec76c14e4b337258fb612 (diff)
downloadcrawl-ref-419037df3337c41f70d12818c780a52b691265d2.tar.gz
crawl-ref-419037df3337c41f70d12818c780a52b691265d2.zip
Apply patch by zebez to add variants for a number of tiles (mostly
mirrored) as well as some nicer tiles for disturbance in water and the entrance to Pan. Thanks! Also, update commandline options help to use of species/job. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@10228 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/tilepick.cc')
-rw-r--r--crawl-ref/source/tilepick.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/crawl-ref/source/tilepick.cc b/crawl-ref/source/tilepick.cc
index 82b9861d55..7d84d9d956 100644
--- a/crawl-ref/source/tilepick.cc
+++ b/crawl-ref/source/tilepick.cc
@@ -2388,7 +2388,7 @@ int tileidx_feature(int object, int gx, int gy)
monsters *mon = &menv[mgrd[gx][gy]];
// Add disturbance to tile.
if (mons_is_submerged(mon))
- t++;
+ t+=2;
}
return (t);
}
@@ -2433,13 +2433,12 @@ int tileidx_feature(int object, int gx, int gy)
return TILE_DNGN_ENTER_ABYSS;
case DNGN_EXIT_ABYSS:
case DNGN_EXIT_HELL:
+ case DNGN_EXIT_PANDEMONIUM:
return TILE_DNGN_EXIT_ABYSS;
case DNGN_STONE_ARCH:
return TILE_DNGN_STONE_ARCH;
case DNGN_ENTER_PANDEMONIUM:
return TILE_DNGN_ENTER_PANDEMONIUM;
- case DNGN_EXIT_PANDEMONIUM:
- return TILE_DNGN_EXIT_PANDEMONIUM;
case DNGN_TRANSIT_PANDEMONIUM:
return TILE_DNGN_TRANSIT_PANDEMONIUM;
case DNGN_ENTER_ORCISH_MINES: