summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/monplace.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/monplace.cc')
-rw-r--r--crawl-ref/source/monplace.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/crawl-ref/source/monplace.cc b/crawl-ref/source/monplace.cc
index 01556be79b..8032d753c9 100644
--- a/crawl-ref/source/monplace.cc
+++ b/crawl-ref/source/monplace.cc
@@ -2430,7 +2430,12 @@ int create_monster(mgen_data mg, bool fail_msg)
}
if (in_bounds(mg.pos))
+ {
summd = mons_place(mg);
+ // If the arena vetoed the placement then give no fail message.
+ if (crawl_state.arena)
+ fail_msg = false;
+ }
// Determine whether creating a monster is successful (summd != -1) {dlb}:
// then handle the outcome. {dlb}: