summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/godwrath.h
diff options
context:
space:
mode:
authorNicholas Feinberg <pleasingfung@gmail.com>2014-07-05 10:51:17 -0700
committerNicholas Feinberg <pleasingfung@gmail.com>2014-07-05 10:52:10 -0700
commitff848d38072d0c377905ec2e599ff212554bb85c (patch)
tree382649d02894a13b73971851688e2f397e92d9d1 /crawl-ref/source/godwrath.h
parent1757ce470f8ac307fdf50e482b20f85febdffc2a (diff)
downloadcrawl-ref-ff848d38072d0c377905ec2e599ff212554bb85c.tar.gz
crawl-ref-ff848d38072d0c377905ec2e599ff212554bb85c.zip
Constify
Guarantee the invariance of various item pickup functions; move gozag gold aura removal to dec_mitm.
Diffstat (limited to 'crawl-ref/source/godwrath.h')
-rw-r--r--crawl-ref/source/godwrath.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/godwrath.h b/crawl-ref/source/godwrath.h
index be27a0d82b..7c32b647bf 100644
--- a/crawl-ref/source/godwrath.h
+++ b/crawl-ref/source/godwrath.h
@@ -11,5 +11,5 @@ bool do_god_revenge(conduct_type thing_done);
void ash_reduce_penance(int amount);
void gozag_incite(monster *mon);
-bool gozag_goldify(item_def &it, int quant_got, bool quiet = false);
+bool gozag_goldify(const item_def &it, int quant_got, bool quiet = false);
#endif