summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/player.cc
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2007-08-22 11:02:10 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2007-08-22 11:02:10 +0000
commit6346b53cc0d9fbcb5484e41967e5ae7ffb16cc71 (patch)
treef687f065fb344fd1610f4ec9db47b48a7006d414 /crawl-ref/source/player.cc
parentae558c387a4ede86cffe8e4654ea6e544863abc1 (diff)
downloadcrawl-ref-6346b53cc0d9fbcb5484e41967e5ae7ffb16cc71.tar.gz
crawl-ref-6346b53cc0d9fbcb5484e41967e5ae7ffb16cc71.zip
s/CAUGHT/HELD/
Gladiators now start with 4 nets. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@2026 c06c8d41-db1a-0410-9941-cceddc491573
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