summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/traps.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/traps.cc')
-rw-r--r--crawl-ref/source/traps.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/traps.cc b/crawl-ref/source/traps.cc
index e9d1bc7ec9..cf559ee079 100644
--- a/crawl-ref/source/traps.cc
+++ b/crawl-ref/source/traps.cc
@@ -911,8 +911,8 @@ static int damage_or_escape_net(int hold)
if (x_chance_in_y(player_evasion(), 20))
escape++;
- // Monsters around you add urgency.
- if (!i_feel_safe())
+ // Dangerous monsters around you add urgency.
+ if (there_are_monsters_nearby(true))
{
damage++;
escape++;