summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/player.cc
diff options
context:
space:
mode:
authorNicholas Feinberg <pleasingfung@gmail.com>2014-07-11 20:45:49 -0700
committerNicholas Feinberg <pleasingfung@gmail.com>2014-07-11 20:56:43 -0700
commit0f135746da2f2e7cadcb9af4c74392d042cef462 (patch)
tree7f5df1f44251c947c237f9ee67ff8515fe50f3bd /crawl-ref/source/player.cc
parentdaae54a4133a85a6393b9351f17d825cfdcdd126 (diff)
downloadcrawl-ref-0f135746da2f2e7cadcb9af4c74392d042cef462.tar.gz
crawl-ref-0f135746da2f2e7cadcb9af4c74392d042cef462.zip
Add exactly one (1) comma to a vampire level-up message
And improve some code formatting slightly.
Diffstat (limited to 'crawl-ref/source/player.cc')
-rw-r--r--crawl-ref/source/player.cc14
1 files changed, 8 insertions, 6 deletions
diff --git a/crawl-ref/source/player.cc b/crawl-ref/source/player.cc
index 9527e2d14a..e5b9184325 100644
--- a/crawl-ref/source/player.cc
+++ b/crawl-ref/source/player.cc
@@ -3216,17 +3216,18 @@ void level_change(int source, const char* aux, bool skip_attribute_increase)
{
if (you.hunger_state > HS_SATIATED)
{
- mprf(MSGCH_INTRINSIC_GAIN, "If you weren't so full you "
- "could now transform into a vampire bat.");
+ mprf(MSGCH_INTRINSIC_GAIN, "If you weren't so full, "
+ "you could now transform into a vampire bat.");
}
else
{
- mprf(MSGCH_INTRINSIC_GAIN, "You can now transform into "
- "a vampire bat.");
+ mprf(MSGCH_INTRINSIC_GAIN,
+ "You can now transform into a vampire bat.");
}
}
else if (you.experience_level == 6)
- mprf(MSGCH_INTRINSIC_GAIN, "You can now bottle potions of blood from corpses.");
+ mprf(MSGCH_INTRINSIC_GAIN,
+ "You can now bottle potions of blood from corpses.");
break;
case SP_NAGA:
@@ -3242,7 +3243,8 @@ void level_change(int source, const char* aux, bool skip_attribute_increase)
if (you.experience_level == 13)
{
mprf(MSGCH_INTRINSIC_GAIN,
- "Your tail grows strong enough to constrict your enemies.");
+ "Your tail grows strong enough to constrict your "
+ "enemies.");
}
break;