summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/output.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/output.cc')
-rw-r--r--crawl-ref/source/output.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/output.cc b/crawl-ref/source/output.cc
index 6efba29125..72a227b1a6 100644
--- a/crawl-ref/source/output.cc
+++ b/crawl-ref/source/output.cc
@@ -2409,13 +2409,13 @@ std::string _status_mut_abilities()
} //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_TROLL
+ || player_genus(GENPC_DRACONIAN) || you.species == SP_SPRIGGAN)
{
mutations.push_back("unfitting armour");
}
- if ( beogh_water_walk() )
+ if (beogh_water_walk())
mutations.push_back("water walking");
std::string current;