summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/effects.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/effects.cc')
-rw-r--r--crawl-ref/source/effects.cc14
1 files changed, 14 insertions, 0 deletions
diff --git a/crawl-ref/source/effects.cc b/crawl-ref/source/effects.cc
index fba2ff8e6f..4658ddb393 100644
--- a/crawl-ref/source/effects.cc
+++ b/crawl-ref/source/effects.cc
@@ -2681,6 +2681,20 @@ void update_corpses(double elapsedTime)
grd[cx][cy] =
static_cast<dungeon_feature_type>(
grd[cx][cy] - 1);
+
+ // clean bloody floor
+ if (is_bloodcovered(cx,cy))
+ env.map[cx][cy].property = FPROP_NONE;
+ // chance of cleaning adjacent squares
+ for (int k=-1; k<=1; k++)
+ {
+ for (int l=-1; l<=1; l++)
+ if (is_bloodcovered(cx+k,cy+l)
+ && one_chance_in(5))
+ {
+ env.map[cx+k][cy+l].property = FPROP_NONE;
+ }
+ }
}
}
}