summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/stash.h
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/stash.h')
-rw-r--r--crawl-ref/source/stash.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/crawl-ref/source/stash.h b/crawl-ref/source/stash.h
index 9727102067..58c6d3ce2a 100644
--- a/crawl-ref/source/stash.h
+++ b/crawl-ref/source/stash.h
@@ -159,10 +159,8 @@ private:
struct stash_search_result
{
- // What level is this stash or shop on.
- level_id level;
-
- coord_def pos;
+ // Where's this thingummy of interest.
+ level_pos pos;
// Number of levels the player must cross to reach the level the stash/shop
// is on.
@@ -178,11 +176,11 @@ struct stash_search_result
// First item in stash that matched
std::string match;
- // The stash or shop in question.
+ // The stash or shop in question. Both can be null if this is a feature.
const Stash *stash;
const ShopInfo *shop;
- stash_search_result() : level(), player_distance(0), matches(0),
+ stash_search_result() : pos(), player_distance(0), matches(0),
count(0), match(), stash(NULL), shop(NULL)
{
}