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.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/crawl-ref/source/tags.cc b/crawl-ref/source/tags.cc
index c4d039134f..0c9d0fc0a5 100644
--- a/crawl-ref/source/tags.cc
+++ b/crawl-ref/source/tags.cc
@@ -875,6 +875,8 @@ static void tag_construct_you_items(struct tagHeader &th)
marshallString(th, you.inv[i].inscription.c_str(), 80);
}
+ marshallByte(th, you.quiver);
+
// item descrip for each type & subtype
// how many types?
marshallByte(th, 5);
@@ -1179,6 +1181,8 @@ static void tag_read_you_items(struct tagHeader &th, char minorVersion)
you.inv[i].slot = index_to_letter(i);
}
+ you.quiver = unmarshallByte(th);
+
// item descrip for each type & subtype
// how many types?
count_c = unmarshallByte(th);