summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/feature.cc
diff options
context:
space:
mode:
authorChris Campbell <chriscampbell89@gmail.com>2014-05-07 14:36:59 +0100
committerChris Campbell <chriscampbell89@gmail.com>2014-05-20 18:29:14 +0100
commitf516d6448db1d10b60cf2df095dfe99723762da2 (patch)
treed8fced1c05ae7240ec085d20881c9311ba5a0707 /crawl-ref/source/feature.cc
parent159be80bc0859b26103818be23bb380d88874fd2 (diff)
downloadcrawl-ref-f516d6448db1d10b60cf2df095dfe99723762da2.tar.gz
crawl-ref-f516d6448db1d10b60cf2df095dfe99723762da2.zip
Recolour Abyss portals to ETC_WARP
To make them less likely to overlap in colour with other portals that they may be on the same level as (enter Hell, Pan or Zig, exit Pan, Pan transit).
Diffstat (limited to 'crawl-ref/source/feature.cc')
-rw-r--r--crawl-ref/source/feature.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/feature.cc b/crawl-ref/source/feature.cc
index 2c3fbd67b9..a02a2226da 100644
--- a/crawl-ref/source/feature.cc
+++ b/crawl-ref/source/feature.cc
@@ -95,8 +95,8 @@ static colour_t _feat_colour(dungeon_feature_type feat)
case DNGN_ENTER_GEHENNA: return RED;
case DNGN_ENTER_COCYTUS: return LIGHTCYAN;
case DNGN_ENTER_TARTARUS: return MAGENTA;
- case DNGN_ENTER_ABYSS: return ETC_RANDOM;
- case DNGN_EXIT_THROUGH_ABYSS: return ETC_RANDOM;
+ case DNGN_ENTER_ABYSS: return ETC_WARP;
+ case DNGN_EXIT_THROUGH_ABYSS: return ETC_WARP;
case DNGN_ENTER_PANDEMONIUM: return LIGHTBLUE;
case DNGN_ENTER_TROVE: return BLUE;
case DNGN_ENTER_SEWER: return LIGHTGREEN;
@@ -107,7 +107,7 @@ static colour_t _feat_colour(dungeon_feature_type feat)
case DNGN_EXIT_DUNGEON: return LIGHTBLUE;
case DNGN_RETURN_FROM_ZOT: return MAGENTA;
case DNGN_EXIT_HELL: return LIGHTRED;
- case DNGN_EXIT_ABYSS: return ETC_RANDOM;
+ case DNGN_EXIT_ABYSS: return ETC_WARP;
case DNGN_EXIT_PANDEMONIUM: return LIGHTBLUE;
case DNGN_TRANSIT_PANDEMONIUM: return LIGHTGREEN;
case DNGN_EXIT_TROVE: return BLUE;