summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/player.h
diff options
context:
space:
mode:
authorreaverb <reaverb.Crawl@gmail.com>2014-05-14 14:30:31 -0400
committerreaverb <reaverb.Crawl@gmail.com>2014-05-14 14:37:19 -0400
commitaec04a413c852d49afe770046d084465d2600762 (patch)
treeb65534ae5ad828759d30c4a86a1e2e26a4e51ecd /crawl-ref/source/player.h
parent4a66bc2554fa7ba61a1752e470afd709edcac21e (diff)
downloadcrawl-ref-aec04a413c852d49afe770046d084465d2600762.tar.gz
crawl-ref-aec04a413c852d49afe770046d084465d2600762.zip
Use you.innate_mutation rather than you.innate_mutations
Ditto for you.temp_mutation.
Diffstat (limited to 'crawl-ref/source/player.h')
-rw-r--r--crawl-ref/source/player.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/player.h b/crawl-ref/source/player.h
index 3ea8723194..9e1ec38c91 100644
--- a/crawl-ref/source/player.h
+++ b/crawl-ref/source/player.h
@@ -191,8 +191,8 @@ public:
FixedVector<uint8_t, NUM_GODS> piety_max;
FixedVector<uint8_t, NUM_MUTATIONS> mutation;
- FixedVector<uint8_t, NUM_MUTATIONS> innate_mutations;
- FixedVector<uint8_t, NUM_MUTATIONS> temp_mutations;
+ FixedVector<uint8_t, NUM_MUTATIONS> innate_mutation;
+ FixedVector<uint8_t, NUM_MUTATIONS> temp_mutation;
struct demon_trait
{