From 419037df3337c41f70d12818c780a52b691265d2 Mon Sep 17 00:00:00 2001 From: j-p-e-g Date: Wed, 15 Jul 2009 21:54:04 +0000 Subject: 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 --- crawl-ref/source/tilepick.cc | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'crawl-ref/source/tilepick.cc') 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: -- cgit v1.2.3-54-g00ecf