From 005c896eabeae37e2171d82915f1674e4d08565b Mon Sep 17 00:00:00 2001 From: dolorous Date: Mon, 19 May 2008 20:50:08 +0000 Subject: Add yet more minor cosmetic fixes. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5139 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/mutation.cc | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'crawl-ref/source/mutation.cc') diff --git a/crawl-ref/source/mutation.cc b/crawl-ref/source/mutation.cc index a23aac08fb..ca2013223c 100644 --- a/crawl-ref/source/mutation.cc +++ b/crawl-ref/source/mutation.cc @@ -1258,9 +1258,8 @@ formatted_string describe_mutations() } //end switch - innate abilities // a bit more stuff - if ( (you.species >= SP_OGRE && you.species <= SP_OGRE_MAGE) || - player_genus(GENPC_DRACONIAN) || - you.species == SP_SPRIGGAN ) + if ((you.species >= SP_OGRE && you.species <= SP_OGRE_MAGE) + || player_genus(GENPC_DRACONIAN) || you.species == SP_SPRIGGAN) { result += "Your body does not fit into most forms of armour." EOL; have_any = true; @@ -1268,7 +1267,7 @@ formatted_string describe_mutations() result += ""; - if ( beogh_water_walk() ) + if (beogh_water_walk()) { result += "You can walk on water." EOL; have_any = true; @@ -1285,8 +1284,9 @@ formatted_string describe_mutations() have_any = true; // these are already handled above: - if (you.species == SP_NAGA && - (i == MUT_BREATHE_POISON || i == MUT_FAST || i == MUT_DEFORMED)) + if (you.species == SP_NAGA + && (i == MUT_BREATHE_POISON || i == MUT_FAST + || i == MUT_DEFORMED)) { continue; } -- cgit v1.2.3-54-g00ecf