summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/player.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/player.cc')
-rw-r--r--crawl-ref/source/player.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/player.cc b/crawl-ref/source/player.cc
index 7d34b2f318..be70ca81cd 100644
--- a/crawl-ref/source/player.cc
+++ b/crawl-ref/source/player.cc
@@ -3295,7 +3295,7 @@ void display_char_status()
if (player_is_levitating())
mpr( "You are hovering above the floor." );
- if (you.attribute[ATTR_CAUGHT])
+ if (you.attribute[ATTR_HELD])
mpr( "You are held in a net." );
if (you.duration[DUR_POISONING])
@@ -5345,7 +5345,7 @@ bool player::confused() const
bool player::caught() const
{
- return (attribute[ATTR_CAUGHT]);
+ return (attribute[ATTR_HELD]);
}
int player::shield_block_penalty() const