summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tags.cc
diff options
context:
space:
mode:
authorreaverb <reaverb.Crawl@gmail.com>2014-06-05 02:45:01 -0400
committerreaverb <reaverb.Crawl@gmail.com>2014-06-05 02:45:01 -0400
commit96369b38a049ee3a6a9291a911b96441eed6bdfc (patch)
treec4c13e70053397079d446b2c387eae1c2496b229 /crawl-ref/source/tags.cc
parent68c5851c0b4e7e27803f6038a377be7a7a0625d1 (diff)
downloadcrawl-ref-96369b38a049ee3a6a9291a911b96441eed6bdfc.tar.gz
crawl-ref-96369b38a049ee3a6a9291a911b96441eed6bdfc.zip
Don't use nuke to describe the abyss destorying all terrain.
Diffstat (limited to 'crawl-ref/source/tags.cc')
-rw-r--r--crawl-ref/source/tags.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/tags.cc b/crawl-ref/source/tags.cc
index 760737843f..f1b9748832 100644
--- a/crawl-ref/source/tags.cc
+++ b/crawl-ref/source/tags.cc
@@ -2938,14 +2938,14 @@ static void tag_read_you(reader &th)
#endif
abyssal_state.seed = unmarshallInt(th);
abyssal_state.depth = unmarshallInt(th);
- abyssal_state.nuke_all = false;
+ abyssal_state.destroy_all_terrain = false;
#if TAG_MAJOR_VERSION == 34
}
else
{
unmarshallFloat(th); // converted abyssal_state.depth to int.
abyssal_state.depth = 0;
- abyssal_state.nuke_all = true;
+ abyssal_state.destroy_all_terrain = true;
abyssal_state.seed = random_int();
}
#endif