summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/store.h
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2012-12-16 05:12:47 +0100
committerAdam Borowski <kilobyte@angband.pl>2012-12-16 05:12:47 +0100
commitd33793693eaf8ce4007158ba43a7a56db75f5a13 (patch)
tree814b5c62a24b39138ed4dd662a1a023534c802dc /crawl-ref/source/store.h
parent129b971fb6ed8d2eec2abc1c9c69fd1e67cfc9cd (diff)
downloadcrawl-ref-d33793693eaf8ce4007158ba43a7a56db75f5a13.tar.gz
crawl-ref-d33793693eaf8ce4007158ba43a7a56db75f5a13.zip
Constify the actor in mgen_data.
Diffstat (limited to 'crawl-ref/source/store.h')
-rw-r--r--crawl-ref/source/store.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/store.h b/crawl-ref/source/store.h
index 122e66d164..9f63d58428 100644
--- a/crawl-ref/source/store.h
+++ b/crawl-ref/source/store.h
@@ -155,7 +155,7 @@ public:
const CrawlHashTable& get_table() const;
const CrawlVector& get_vector() const;
const item_def& get_item() const;
- const monster& get_monster() const;
+ const monster& get_monster() const;
const dlua_chunk& get_lua() const;
public: