summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/output.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/output.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/output.cc')
-rw-r--r--crawl-ref/source/output.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/output.cc b/crawl-ref/source/output.cc
index eab28314be..011f2b3a18 100644
--- a/crawl-ref/source/output.cc
+++ b/crawl-ref/source/output.cc
@@ -556,7 +556,7 @@ void print_stats(void)
cprintf( "Rot " );
}
- if (you.attribute[ATTR_CAUGHT])
+ if (you.attribute[ATTR_HELD])
{
textcolor( RED );
cprintf( "Held " );
@@ -1478,7 +1478,7 @@ std::string status_mut_abilities()
text += "non-regenerating, ";
}
- if (you.attribute[ATTR_CAUGHT])
+ if (you.attribute[ATTR_HELD])
text += "held, ";
const int mr = player_res_magic();