summaryrefslogtreecommitdiffstats
path: root/crawl-ref
diff options
context:
space:
mode:
authorRobert Vollmert <rvollmert@gmx.net>2009-11-10 14:17:53 +0100
committerRobert Vollmert <rvollmert@gmx.net>2009-11-10 14:17:53 +0100
commitd2b8c2a72d975b9bf6a3f8ea41cff136adf8cb0a (patch)
treec5640eeffda4bba63338d2a30627b4e6d0cf7db0 /crawl-ref
parentdba0e928767de98d65d7070e933d790e485cf3e7 (diff)
downloadcrawl-ref-d2b8c2a72d975b9bf6a3f8ea41cff136adf8cb0a.tar.gz
crawl-ref-d2b8c2a72d975b9bf6a3f8ea41cff136adf8cb0a.zip
Remove redundant bleeding check.
Diffstat (limited to 'crawl-ref')
-rw-r--r--crawl-ref/source/misc.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/crawl-ref/source/misc.cc b/crawl-ref/source/misc.cc
index 077794339b..c3c1199639 100644
--- a/crawl-ref/source/misc.cc
+++ b/crawl-ref/source/misc.cc
@@ -1102,8 +1102,7 @@ static void _maybe_bloodify_square(const coord_def& where, int amount,
"might bleed now; square: (%d, %d); amount = %d",
where.x, where.y, amount);
#endif
- if (allow_bleeding_on_square(where))
- env.pgrid(where) |= FPROP_BLOODY;
+ env.pgrid(where) |= FPROP_BLOODY;
if (smell_alert)
blood_smell(12, where);