summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/tags.cc8
1 files changed, 0 insertions, 8 deletions
diff --git a/crawl-ref/source/tags.cc b/crawl-ref/source/tags.cc
index 612f938b56..8309c17566 100644
--- a/crawl-ref/source/tags.cc
+++ b/crawl-ref/source/tags.cc
@@ -1646,10 +1646,6 @@ static void tag_read_you_items(reader &th, char minorVersion)
for (j = 0; j < count_s; ++j)
you.seen_spell[j] = unmarshallByte(th);
-#if (TAG_MAJOR_VERSION == 14)
-if (th.getMinorVersion() >= 1)
-{
-#endif
count_s = unmarshallShort(th);
if (count_s > NUM_WEAPONS)
count_s = NUM_WEAPONS;
@@ -1661,10 +1657,6 @@ if (th.getMinorVersion() >= 1)
count_s = NUM_ARMOURS;
for (j = 0; j < count_s; ++j)
you.seen_armour[j] = unmarshallLong(th);
-#if (TAG_MAJOR_VERSION == 14)
-}
-#endif
-
}
static PlaceInfo unmarshallPlaceInfo(reader &th)