summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/files.cc
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-07 10:16:26 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-07 10:16:26 +0000
commit56e74bf761ad5b73de543c2a331c26f1b40c0b12 (patch)
treed25f36e35a64cbe082009ac952cbd44bc98ef727 /crawl-ref/source/files.cc
parent0ed1d5f2217c5cee43cb9fe38ceff0234d9c617a (diff)
downloadcrawl-ref-56e74bf761ad5b73de543c2a331c26f1b40c0b12.tar.gz
crawl-ref-56e74bf761ad5b73de543c2a331c26f1b40c0b12.zip
Create random blood spatter in the Abyss and Pandemonium (FR 1986241).
How it works: * Pick 12 random grids on the map and make them bloody. * Recursively and with decreasing chances, allow their neighbours to get spattered as well. I think the effect is rather nice but the numbers might need to be tweaked anyway. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5533 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/files.cc')
-rw-r--r--crawl-ref/source/files.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/files.cc b/crawl-ref/source/files.cc
index dcf852e7d3..50354f5ab9 100644
--- a/crawl-ref/source/files.cc
+++ b/crawl-ref/source/files.cc
@@ -1055,10 +1055,10 @@ bool load( dungeon_feature_type stair_taken, load_mode_type load_mode,
{
if (tmp_file_pairs[you.your_level][you.where_are_you] == false)
{
- // make sure old file is gone
+ // Make sure old file is gone.
unlink(cha_fil.c_str());
- // save the information for later deletion -- DML 6/11/99
+ // Save the information for later deletion -- DML 6/11/99
tmp_file_pairs[you.your_level][you.where_are_you] = true;
}
}