From 6ebcd3f73efb7cb08807bedd0524d1dfdd6db978 Mon Sep 17 00:00:00 2001 From: j-p-e-g Date: Mon, 3 Aug 2009 09:45:16 +0000 Subject: * Fix infinite Xom teleportation rides. Whoops! * Move unseen altar/entrance tiles to dngn.png, so they're handled correctly with magic mapping. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@10482 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/tilepick.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'crawl-ref/source/tilepick.cc') diff --git a/crawl-ref/source/tilepick.cc b/crawl-ref/source/tilepick.cc index 7e5afc1dcc..60a4406723 100644 --- a/crawl-ref/source/tilepick.cc +++ b/crawl-ref/source/tilepick.cc @@ -2671,7 +2671,7 @@ void tileidx_unseen(unsigned int &fg, unsigned int &bg, int ch, case '^': bg = TILE_DNGN_TRAP_ARROW; break; case '_': case 220: - case 131: fg = TILE_UNSEEN_ALTAR; break; + case 131: bg = TILE_DNGN_UNSEEN_ALTAR; break; case '{': case 247: case 135: bg = TILE_DNGN_DEEP_WATER; break; @@ -2682,7 +2682,7 @@ void tileidx_unseen(unsigned int &fg, unsigned int &bg, int ch, case 254: bg = TILE_DNGN_CLOSED_DOOR; break; case 129: bg = TILE_DNGN_RETURN; break; case 239: - case 132: fg = TILE_UNSEEN_ENTRANCE; break; + case 132: bg = TILE_DNGN_UNSEEN_ENTRANCE; break; case 136: bg = TILE_DNGN_ENTER; break; case 141: bg = TILE_DNGN_LAVA; break; } -- cgit v1.2.3-54-g00ecf