summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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)