summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/dat/lair.des2
-rw-r--r--crawl-ref/source/monstuff.cc5
2 files changed, 4 insertions, 3 deletions
diff --git a/crawl-ref/source/dat/lair.des b/crawl-ref/source/dat/lair.des
index ea8a56cc2a..031c4c83b8 100644
--- a/crawl-ref/source/dat/lair.des
+++ b/crawl-ref/source/dat/lair.des
@@ -893,7 +893,7 @@ LFLAGS: no_tele_control
dgn.set_feature_desc_long("stone wall",
"This strangely slime-free stone wall is carved all over with countless "..
"mystical runes. One often repeated set of runes seems to refer to "..
-"'the royal jelly'")
+"'the royal jelly.'")
}}
MAP
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
diff --git a/crawl-ref/source/monstuff.cc b/crawl-ref/source/monstuff.cc
index 816b47d7ba..81d2c0cd67 100644
--- a/crawl-ref/source/monstuff.cc
+++ b/crawl-ref/source/monstuff.cc
@@ -768,8 +768,7 @@ static bool _slime_pit_unlock(bool silent)
{
for (int x = 0; x < GXM && !in_los; ++x)
for (int y = 0; y < GYM; ++y)
- if (grd[x][y] == DNGN_STONE_WALL
- && see_grid(x, y))
+ if (grd[x][y] == DNGN_STONE_WALL && see_grid(x, y))
{
in_los = true;
break;
@@ -777,6 +776,8 @@ static bool _slime_pit_unlock(bool silent)
}
replace_area_wrapper(DNGN_STONE_WALL, DNGN_CLEAR_ROCK_WALL);
+ // In case it was already vitrified, but then it's less noticeable.
+ replace_area_wrapper(DNGN_CLEAR_STONE_WALL, DNGN_CLEAR_ROCK_WALL);
if (!silent)
{