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.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/player.cc b/crawl-ref/source/player.cc
index 0900f1bae6..ce527d5a8d 100644
--- a/crawl-ref/source/player.cc
+++ b/crawl-ref/source/player.cc
@@ -6805,10 +6805,10 @@ bool player::sicken(int amount)
if (res_rotting() || amount <= 0)
return (false);
- mpr( "You feel ill." );
+ mpr("You feel ill.");
disease += amount * BASELINE_DELAY;
- if(disease > 210 * BASELINE_DELAY)
+ if (disease > 210 * BASELINE_DELAY)
disease = 210 * BASELINE_DELAY;
learned_something_new(TUT_YOU_SICK);