summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/output.cc
diff options
context:
space:
mode:
authorharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2008-09-25 23:19:59 +0000
committerharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2008-09-25 23:19:59 +0000
commite44a4d8349036092b8c691ce1644263d3b4122a4 (patch)
tree70eb416296c1199e43e1caabed53195f7ccd42e3 /crawl-ref/source/output.cc
parentf7eb8c113c75b0b9a064cfd840d46915494b9a34 (diff)
downloadcrawl-ref-e44a4d8349036092b8c691ce1644263d3b4122a4.tar.gz
crawl-ref-e44a4d8349036092b8c691ce1644263d3b4122a4.zip
Removed Ogre-Mages, hopefully without breaking anything. Docs are unchanged.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@6996 c06c8d41-db1a-0410-9941-cceddc491573
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;