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.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/crawl-ref/source/player.cc b/crawl-ref/source/player.cc
index 10b2e1f904..a6b06e0e04 100644
--- a/crawl-ref/source/player.cc
+++ b/crawl-ref/source/player.cc
@@ -7141,8 +7141,8 @@ void player::paralyse(actor *who, int str)
int &paralysis(duration[DUR_PARALYSIS]);
- mprf( "You %s the ability to move!",
- paralysis ? "still haven't" : "suddenly lose" );
+ mprf("You %s the ability to move!",
+ paralysis ? "still haven't" : "suddenly lose");
if (str > paralysis && (paralysis < 3 || one_chance_in(paralysis)))
paralysis = str;
@@ -7157,8 +7157,8 @@ void player::petrify(actor *who, int str)
int &petrif(duration[DUR_PETRIFIED]);
- mprf( "You %s the ability to move!",
- petrif ? "still haven't" : "suddenly lose" );
+ mprf("You %s the ability to move!",
+ petrif ? "still haven't" : "suddenly lose");
if (str > petrif && (petrif < 3 || one_chance_in(petrif)))
petrif = str;