summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/init.txt1
-rw-r--r--crawl-ref/source/externs.h1
-rw-r--r--crawl-ref/source/initfile.cc1
-rw-r--r--crawl-ref/source/view.cc2
4 files changed, 1 insertions, 4 deletions
diff --git a/crawl-ref/init.txt b/crawl-ref/init.txt
index ae1daa66d1..66f39d8f8f 100644
--- a/crawl-ref/init.txt
+++ b/crawl-ref/init.txt
@@ -122,7 +122,6 @@ stab_brand = hi:blue
##### 4-g Travel and Exploration #################
#
-# travel_colour = false
# travel_delay = 20
# travel_avoid_terrain = shallow water
#
diff --git a/crawl-ref/source/externs.h b/crawl-ref/source/externs.h
index 4bdb77cae9..a405cbf40d 100644
--- a/crawl-ref/source/externs.h
+++ b/crawl-ref/source/externs.h
@@ -1512,7 +1512,6 @@ public:
int stash_tracking; // How stashes are tracked
- bool travel_colour; // Colour levelmap using travel information?
int tc_reachable; // Colour for squares that are reachable
int tc_excluded; // Colour for excluded squares.
int tc_exclude_circle; // Colour for squares in the exclusion radius
diff --git a/crawl-ref/source/initfile.cc b/crawl-ref/source/initfile.cc
index 6560462c32..8381108260 100644
--- a/crawl-ref/source/initfile.cc
+++ b/crawl-ref/source/initfile.cc
@@ -630,7 +630,6 @@ void game_options::reset_options()
pickup_dropped = false;
pickup_thrown = true;
- travel_colour = true;
travel_delay = 20;
travel_stair_cost = 500;
diff --git a/crawl-ref/source/view.cc b/crawl-ref/source/view.cc
index 59ea890bb6..817b973db1 100644
--- a/crawl-ref/source/view.cc
+++ b/crawl-ref/source/view.cc
@@ -2581,7 +2581,7 @@ static void draw_level_map(int start_x, int start_y, bool travel_mode)
{
colour = colour_code_map(c.x, c.y,
Options.item_colour,
- travel_mode && Options.travel_colour);
+ travel_mode);
buffer2[bufcount2 + 1] = colour;
buffer2[bufcount2] = env.map(c).glyph();