summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/player.cc
diff options
context:
space:
mode:
authorDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2009-11-18 12:43:13 -0600
committerDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2009-11-18 12:43:13 -0600
commit82da1aa1463fb47bc8227c39a05184ea8f8d8546 (patch)
tree1e338e29f07182ce6d2a526adfb592b42dc78637 /crawl-ref/source/player.cc
parenta7cf1b9a69b32a88047c3e9fb93bc02a9ca5840d (diff)
downloadcrawl-ref-82da1aa1463fb47bc8227c39a05184ea8f8d8546.tar.gz
crawl-ref-82da1aa1463fb47bc8227c39a05184ea8f8d8546.zip
Add formatting fixes.
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);