summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/travel.h
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/travel.h')
-rw-r--r--crawl-ref/source/travel.h21
1 files changed, 12 insertions, 9 deletions
diff --git a/crawl-ref/source/travel.h b/crawl-ref/source/travel.h
index 864207d029..8fcf639a73 100644
--- a/crawl-ref/source/travel.h
+++ b/crawl-ref/source/travel.h
@@ -165,15 +165,18 @@ extern travel_distance_grid_t travel_point_distance;
enum explore_stop_type
{
- ES_NONE = 0x00,
- ES_ITEM = 0x01,
- ES_PICKUP = 0x02,
- ES_GREEDY_PICKUP = 0x04,
- ES_GREEDY_ITEM = 0x08,
- ES_STAIR = 0x10,
- ES_SHOP = 0x20,
- ES_ALTAR = 0x40,
- ES_PORTAL = 0x80
+ ES_NONE = 0x000,
+ ES_ITEM = 0x001,
+ ES_PICKUP = 0x002,
+ ES_GREEDY_PICKUP = 0x004,
+ ES_GREEDY_ITEM = 0x008,
+ ES_STAIR = 0x010,
+ ES_SHOP = 0x020,
+ ES_ALTAR = 0x040,
+ ES_PORTAL = 0x080,
+ ES_GLOWING_ITEM = 0x100,
+ ES_ARTEFACT = 0x200,
+ ES_RUNE = 0x400
};
////////////////////////////////////////////////////////////////////////////