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>2009-08-14 23:35:55 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2009-08-14 23:35:55 +0000
commit6e95fa8022f97144a6f99af228beaf3d66e90021 (patch)
treee21a9125dd40a86bce19b91d2e29c8727b0f258f /crawl-ref/source/output.cc
parent23b548a717d1c79f05ba493f5dc9730819f07674 (diff)
downloadcrawl-ref-6e95fa8022f97144a6f99af228beaf3d66e90021.tar.gz
crawl-ref-6e95fa8022f97144a6f99af228beaf3d66e90021.zip
As per FR 2837779, change Forescry to Phase Shift (Trl). Same level,
same effect, but different name, description, and messages. Also, See Invisible is now pure Ench, and has been moved into the Book of Enchantments. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@10548 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/output.cc')
-rw-r--r--crawl-ref/source/output.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/output.cc b/crawl-ref/source/output.cc
index d2d5eb7cd4..7a79bf53d7 100644
--- a/crawl-ref/source/output.cc
+++ b/crawl-ref/source/output.cc
@@ -490,7 +490,7 @@ static void _print_stats_ac(int x, int y)
static void _print_stats_ev(int x, int y)
{
cgotoxy(x+4, y, GOTO_STAT);
- textcolor(you.duration[DUR_FORESCRY] ? LIGHTBLUE : HUD_VALUE_COLOUR);
+ textcolor(you.duration[DUR_PHASE_SHIFT] ? LIGHTBLUE : HUD_VALUE_COLOUR);
cprintf( "%2d ", player_evasion() );
}
@@ -2396,8 +2396,8 @@ std::string _status_mut_abilities()
status.push_back(_get_expiration_string(DUR_DEATH_CHANNEL,
"death channel"));
}
- if (you.duration[DUR_FORESCRY])
- status.push_back(_get_expiration_string(DUR_FORESCRY, "forewarned"));
+ if (you.duration[DUR_PHASE_SHIFT])
+ status.push_back(_get_expiration_string(DUR_PHASE_SHIFT, "phasing"));
if (you.duration[DUR_SILENCE])
status.push_back(_get_expiration_string(DUR_SILENCE, "silence"));