summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-08 01:31:04 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-08 01:31:04 +0000
commit77db3409a15b49f633e303bf01cb794d8a9697a2 (patch)
treeca2b7414db47062237a26727d1fdf38fc8af69bb
parent5d406217b4fc60f8c4da10d65d3f14fd5cad1adf (diff)
downloadcrawl-ref-77db3409a15b49f633e303bf01cb794d8a9697a2.tar.gz
crawl-ref-77db3409a15b49f633e303bf01cb794d8a9697a2.zip
Fix default value for the force parameter of place_monster_corpse().
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@8317 c06c8d41-db1a-0410-9941-cceddc491573
-rw-r--r--crawl-ref/source/monstuff.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/monstuff.h b/crawl-ref/source/monstuff.h
index 3cd58c1276..41604c31c5 100644
--- a/crawl-ref/source/monstuff.h
+++ b/crawl-ref/source/monstuff.h
@@ -93,7 +93,7 @@ int fill_out_corpse(const monsters* monster, item_def& corpse,
bool allow_weightless = false);
int place_monster_corpse(const monsters *monster, bool silent,
- bool force = true);
+ bool force = false);
void mons_check_pool(monsters *monster, const coord_def &oldpos,
killer_type killer = KILL_NONE, int killnum = -1);