summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tags.cc
diff options
context:
space:
mode:
authorreaverb <reaverb.Crawl@gmail.com>2014-06-11 17:21:48 -0400
committerreaverb <reaverb.Crawl@gmail.com>2014-06-11 17:35:19 -0400
commit2e545790805ddb633086636c5bd9be3253488051 (patch)
tree66014bde4d7fc758d4cb946ef24595bfeb881633 /crawl-ref/source/tags.cc
parent0cb07d783848ae4608a5e2f81d646d70867a75c4 (diff)
downloadcrawl-ref-2e545790805ddb633086636c5bd9be3253488051.tar.gz
crawl-ref-2e545790805ddb633086636c5bd9be3253488051.zip
Rename a couple props to not use 'napalm'
Diffstat (limited to 'crawl-ref/source/tags.cc')
-rw-r--r--crawl-ref/source/tags.cc7
1 files changed, 7 insertions, 0 deletions
diff --git a/crawl-ref/source/tags.cc b/crawl-ref/source/tags.cc
index 7f9743bfa4..49bccef893 100644
--- a/crawl-ref/source/tags.cc
+++ b/crawl-ref/source/tags.cc
@@ -3021,6 +3021,13 @@ static void tag_read_you(reader &th)
you.props.clear();
you.props.read(th);
+#if TAG_MAJOR_VERSION == 34
+ if (th.getMinorVersion() < TAG_MINOR_STICKY_FLAME)
+ {
+ you.props["sticky_flame_source"] = you.props["napalmer"];
+ you.props["sticky_flame_aux"] = you.props["napalm_aux"];
+ }
+#endif
}
static void tag_read_you_items(reader &th)