From 7fd519911a9007b617b873d4690159d65ca2dd96 Mon Sep 17 00:00:00 2001 From: j-p-e-g Date: Wed, 12 Sep 2007 14:44:16 +0000 Subject: Another change to how bazaars look. All floor squares around shops (in bazaars) get coloured yellow. (David likened this to light flooding the street.) Lava on red floor get converted to water, and deep water on blue floor is substituted by lava or shallow water. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@2074 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/direct.cc | 3 +++ 1 file changed, 3 insertions(+) (limited to 'crawl-ref/source/direct.cc') diff --git a/crawl-ref/source/direct.cc b/crawl-ref/source/direct.cc index 88da50188a..ac30c963af 100644 --- a/crawl-ref/source/direct.cc +++ b/crawl-ref/source/direct.cc @@ -1225,6 +1225,7 @@ void describe_floor() switch (grid) { case DNGN_FLOOR: + case DNGN_FLOOR_SPECIAL: return; case DNGN_ENTER_SHOP: @@ -1371,6 +1372,7 @@ std::string raw_feature_description(dungeon_feature_type grid, return ("Some shallow water"); case DNGN_UNDISCOVERED_TRAP: case DNGN_FLOOR: + case DNGN_FLOOR_SPECIAL: return ("Floor"); case DNGN_OPEN_DOOR: return ("open door"); @@ -1883,6 +1885,7 @@ static void describe_cell(int mx, int my) msg_channel_type channel = MSGCH_EXAMINE; if (grd[mx][my] == DNGN_FLOOR + || grd[mx][my] == DNGN_FLOOR_SPECIAL || grd[mx][my] == DNGN_SHALLOW_WATER || grd[mx][my] == DNGN_DEEP_WATER) { -- cgit v1.2.3-54-g00ecf