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.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/monplace.cc b/crawl-ref/source/monplace.cc
index 942e4ac4af..14451f56c1 100644
--- a/crawl-ref/source/monplace.cc
+++ b/crawl-ref/source/monplace.cc
@@ -918,7 +918,7 @@ int place_monster(mgen_data mg, bool force_pos)
}
// Message to player from stairwell/gate appearance.
- if (see_cell(mg.pos) && mg.proximity == PROX_NEAR_STAIRS)
+ if (observe_cell(mg.pos) && mg.proximity == PROX_NEAR_STAIRS)
{
std::string msg;
@@ -2693,7 +2693,7 @@ int create_monster(mgen_data mg, bool fail_msg)
// Determine whether creating a monster is successful (summd != -1) {dlb}:
// then handle the outcome. {dlb}:
- if (fail_msg && summd == -1 && see_cell(mg.pos))
+ if (fail_msg && summd == -1 && observe_cell(mg.pos))
mpr("You see a puff of smoke.");
// The return value is either -1 (failure of some sort)