summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/acr.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-11-12 17:56:09 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-11-12 17:56:09 +0000
commite4476864dd209f1569fef678b79c854fd43cd604 (patch)
tree742ffac3f2cdcbafa0c211078e32f5a4392b91cf /crawl-ref/source/acr.cc
parentc44a23c617e73824f748b304e77b5812aa4bd2b6 (diff)
downloadcrawl-ref-e4476864dd209f1569fef678b79c854fd43cd604.tar.gz
crawl-ref-e4476864dd209f1569fef678b79c854fd43cd604.zip
Add more spacing fixes.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@7441 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/acr.cc')
-rw-r--r--crawl-ref/source/acr.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/acr.cc b/crawl-ref/source/acr.cc
index 182ba873ca..7f3502d00e 100644
--- a/crawl-ref/source/acr.cc
+++ b/crawl-ref/source/acr.cc
@@ -2787,8 +2787,8 @@ static void _decrement_durations()
{
const int chance =
10 + player_mutation_level(MUT_BERSERK) * 25
- + (wearing_amulet( AMU_RAGE ) ? 10 : 0)
- + (player_has_spell( SPELL_BERSERKER_RAGE ) ? 5 : 0);
+ + (wearing_amulet(AMU_RAGE) ? 10 : 0)
+ + (player_has_spell(SPELL_BERSERKER_RAGE) ? 5 : 0);
// Note the beauty of Trog! They get an extra save that's at
// the very least 20% and goes up to 100%.
@@ -2800,7 +2800,7 @@ static void _decrement_durations()
else if (one_chance_in(chance))
{
mpr("You pass out from exhaustion.", MSGCH_WARN);
- you.duration[DUR_PARALYSIS] += roll_dice( 1, 4 );
+ you.duration[DUR_PARALYSIS] += roll_dice(1, 4);
}
}