summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/misc.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/misc.cc')
-rw-r--r--crawl-ref/source/misc.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/misc.cc b/crawl-ref/source/misc.cc
index edc211f8f1..4224889d69 100644
--- a/crawl-ref/source/misc.cc
+++ b/crawl-ref/source/misc.cc
@@ -1153,10 +1153,10 @@ static void maybe_bloodify_square(int x, int y, int amount, bool spatter = false
continue;
// Spattering onto walls etc. less likely.
- if (grd[x+i][y+j] < DNGN_MINMOVE && one_chance_in(3))
+ if (grd[x+i][y+j] < DNGN_MINMOVE && !one_chance_in(3))
continue;
- maybe_bloodify_square(x+i, y+j, amount/10);
+ maybe_bloodify_square(x+i, y+j, amount/15);
}
}
}