summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spells4.cc
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2009-08-16 18:03:35 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2009-08-16 18:03:35 +0000
commitd00853ac9792a8ea972d8ca6011f305b0f34c779 (patch)
tree8483e5ed07b92acc43401835bc682d743e81b41c /crawl-ref/source/spells4.cc
parent614cdcf0426223561bf7a58ebb999e47c366fe82 (diff)
downloadcrawl-ref-d00853ac9792a8ea972d8ca6011f305b0f34c779.tar.gz
crawl-ref-d00853ac9792a8ea972d8ca6011f305b0f34c779.zip
Use Jude's nicer messages for the Phase Shift spell.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@10555 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/spells4.cc')
-rw-r--r--crawl-ref/source/spells4.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/spells4.cc b/crawl-ref/source/spells4.cc
index 9438a89b6e..0101f92d1c 100644
--- a/crawl-ref/source/spells4.cc
+++ b/crawl-ref/source/spells4.cc
@@ -333,9 +333,9 @@ void cast_shatter(int pow)
void cast_phase_shift(int pow)
{
if (!you.duration[DUR_PHASE_SHIFT])
- mpr("You begin to phase in and out of the material plane...");
+ mpr("You feel the strange sensation of being on two planes at once.");
else
- mpr("Your phasing becomes more pronounced.");
+ mpr("Your feel the material plane grow further away.");
you.duration[DUR_PHASE_SHIFT] += 5 + random2(pow);