summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/player.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/player.cc')
-rw-r--r--crawl-ref/source/player.cc11
1 files changed, 6 insertions, 5 deletions
diff --git a/crawl-ref/source/player.cc b/crawl-ref/source/player.cc
index dc500ecb4a..9a6d2efdf7 100644
--- a/crawl-ref/source/player.cc
+++ b/crawl-ref/source/player.cc
@@ -3338,7 +3338,8 @@ void level_change(bool skip_attribute_increase)
case SP_GREY_DRACONIAN:
if (you.experience_level == 7)
{
- mpr("Your scales start turning grey.", MSGCH_INTRINSIC_GAIN);
+ mpr("Your scales start turning grey.",
+ MSGCH_INTRINSIC_GAIN);
more();
redraw_screen();
}
@@ -3366,8 +3367,8 @@ void level_change(bool skip_attribute_increase)
case SP_CENTAUR:
if (!(you.experience_level % 4))
{
- modify_stat((coinflip() ? STAT_DEXTERITY
- : STAT_STRENGTH), 1, false,
+ modify_stat((coinflip() ? STAT_STRENGTH
+ : STAT_DEXTERITY), 1, false,
"level gain");
}
@@ -3427,8 +3428,8 @@ void level_change(bool skip_attribute_increase)
if (!(you.experience_level % 4))
{
- modify_stat((coinflip() ? STAT_DEXTERITY
- : STAT_STRENGTH), 1, false,
+ modify_stat((coinflip() ? STAT_STRENGTH
+ : STAT_DEXTERITY), 1, false,
"level gain");
}
break;