summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/player.cc
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2008-11-18 14:55:58 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2008-11-18 14:55:58 +0000
commitacb58afeec9184c1910f705da7bae843b9fc14a8 (patch)
treeb14ed098ec4f33c729e91c3bf86f72b0071708ef /crawl-ref/source/player.cc
parentf60a6632bae97bb7772b059b9ce1ace4dd523417 (diff)
downloadcrawl-ref-acb58afeec9184c1910f705da7bae843b9fc14a8.tar.gz
crawl-ref-acb58afeec9184c1910f705da7bae843b9fc14a8.zip
Transformed naga should not get bonus defence vs water attack.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@7473 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/player.cc')
-rw-r--r--crawl-ref/source/player.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/player.cc b/crawl-ref/source/player.cc
index 39c4d506cc..02c7bf7abe 100644
--- a/crawl-ref/source/player.cc
+++ b/crawl-ref/source/player.cc
@@ -5837,7 +5837,7 @@ bool player::has_spell(spell_type spell) const
bool player::extra_balanced() const
{
- return (species == SP_NAGA);
+ return (species == SP_NAGA && !transform_changed_physiology());
}
bool player::floundering() const