summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/player.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-03-05 16:02:37 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-03-05 16:02:37 +0000
commit44723972ddf4ba6052fcd03dc0ffa9f32edc0ee7 (patch)
tree550863674346bbe7c1df927759037b9b92082212 /crawl-ref/source/player.cc
parent65f0d679e96990cc06278aaeff4a17f7279d76ed (diff)
downloadcrawl-ref-44723972ddf4ba6052fcd03dc0ffa9f32edc0ee7.tar.gz
crawl-ref-44723972ddf4ba6052fcd03dc0ffa9f32edc0ee7.zip
Add minor cosmetic fixes.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@9340 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/player.cc')
-rw-r--r--crawl-ref/source/player.cc15
1 files changed, 8 insertions, 7 deletions
diff --git a/crawl-ref/source/player.cc b/crawl-ref/source/player.cc
index e6a1b87172..47ecf9cc32 100644
--- a/crawl-ref/source/player.cc
+++ b/crawl-ref/source/player.cc
@@ -3141,13 +3141,14 @@ void level_change(bool skip_attribute_increase)
case SP_MUMMY:
if (you.experience_level == 13 || you.experience_level == 26)
{
- mpr( "You feel more in touch with the powers of death.",
- MSGCH_INTRINSIC_GAIN );
+ mpr("You feel more in touch with the powers of death.",
+ MSGCH_INTRINSIC_GAIN);
}
if (you.experience_level == 13) // level 13 for now -- bwr
{
- mpr( "You can now infuse your body with magic to restore decomposition.", MSGCH_INTRINSIC_GAIN );
+ mpr("You can now infuse your body with magic to restore "
+ "decomposition.", MSGCH_INTRINSIC_GAIN);
}
break;
@@ -3156,13 +3157,13 @@ void level_change(bool skip_attribute_increase)
{
if (you.hunger_state > HS_SATIATED)
{
- mpr( "If you weren't so full you could now transform "
- "into a vampire bat.", MSGCH_INTRINSIC_GAIN );
+ mpr("If you weren't so full you could now transform "
+ "into a vampire bat.", MSGCH_INTRINSIC_GAIN);
}
else
{
- mpr( "You can now transform into a vampire bat.",
- MSGCH_INTRINSIC_GAIN );
+ mpr("You can now transform into a vampire bat.",
+ MSGCH_INTRINSIC_GAIN );
}
}
else if (you.experience_level == 6)