summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tags.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/tags.cc')
-rw-r--r--crawl-ref/source/tags.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/crawl-ref/source/tags.cc b/crawl-ref/source/tags.cc
index 88e68d9120..e7af317cb2 100644
--- a/crawl-ref/source/tags.cc
+++ b/crawl-ref/source/tags.cc
@@ -1027,9 +1027,9 @@ static void tag_construct_you(writer &th)
// be recalculated on game start.
// List of currently beholding monsters (usually empty).
- marshallByte(th, you.beheld_by.size());
- for (unsigned int k = 0; k < you.beheld_by.size(); k++)
- marshallByte(th, you.beheld_by[k]);
+ marshallByte(th, you.mesmerised_by.size());
+ for (unsigned int k = 0; k < you.mesmerised_by.size(); k++)
+ marshallByte(th, you.mesmerised_by[k]);
// minorVersion 2 starts here
marshallByte(th, you.piety_hysteresis);
@@ -1437,7 +1437,7 @@ static void tag_read_you(reader &th, char minorVersion)
// List of currently beholding monsters (usually empty).
count_c = unmarshallByte(th);
for (i = 0; i < count_c; i++)
- you.beheld_by.push_back(unmarshallByte(th));
+ you.mesmerised_by.push_back(unmarshallByte(th));
if (minorVersion >= TAG_MINOR_PIETY)
you.piety_hysteresis = unmarshallByte(th);