summaryrefslogtreecommitdiffstats
path: root/crawl-ref
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-05-10 00:26:23 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-05-10 00:26:23 +0000
commit1b5cb7207f6d4d2b7e4eb51e3baf39824da14b70 (patch)
tree97261e118fc2467b657d17b8de7783545df8f9d1 /crawl-ref
parente51475777aaeeb19b64b24e50e4c05111f71fa76 (diff)
downloadcrawl-ref-1b5cb7207f6d4d2b7e4eb51e3baf39824da14b70.tar.gz
crawl-ref-1b5cb7207f6d4d2b7e4eb51e3baf39824da14b70.zip
Add more TSO halo description fixes.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@4979 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref')
-rw-r--r--crawl-ref/source/describe.cc2
-rw-r--r--crawl-ref/source/output.cc4
-rw-r--r--crawl-ref/source/player.cc2
3 files changed, 4 insertions, 4 deletions
diff --git a/crawl-ref/source/describe.cc b/crawl-ref/source/describe.cc
index e437898529..91ad931466 100644
--- a/crawl-ref/source/describe.cc
+++ b/crawl-ref/source/describe.cc
@@ -2428,7 +2428,7 @@ static std::string religion_help( god_type god )
{
std::string result = "";
- switch(god)
+ switch (god)
{
case GOD_ZIN:
result += "Pray at one of " + god_name(god)
diff --git a/crawl-ref/source/output.cc b/crawl-ref/source/output.cc
index 22beca19e9..f9542ea459 100644
--- a/crawl-ref/source/output.cc
+++ b/crawl-ref/source/output.cc
@@ -548,8 +548,8 @@ struct status_light
// Prints burden, hunger,
// pray, holy, teleport, regen, insulation, fly/lev, invis, silence,
// conf. touch, bargain, sage
-// confused, beheld, fire, poison, disease, rot, held, glow/halo,
-// swift, fast, slow, breath
+// confused, beheld, fire, poison, disease, rot, held, glow, swift,
+// fast, slow, breath
//
// Note the usage of bad_ench_colour() correspond to levels that
// can be found in player.cc, ie those that the player can tell by
diff --git a/crawl-ref/source/player.cc b/crawl-ref/source/player.cc
index 8d48b4bd2b..a884c99594 100644
--- a/crawl-ref/source/player.cc
+++ b/crawl-ref/source/player.cc
@@ -3663,7 +3663,7 @@ void display_char_status()
if (halo_size > 6)
mpr( "You are illuminated by a large divine halo." );
else if (halo_size > 3)
- mpr( "You are illuminated by a medium divine halo." );
+ mpr( "You are illuminated by a divine halo." );
else
mpr( "You are illuminated by a small divine halo." );
}