summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/player.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-04-18 16:59:42 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-04-18 16:59:42 +0000
commit40e6cec1c6f46027dc07110dde8b14248f728d05 (patch)
treef76be2906df62230276e5d9742662be95a8180fc /crawl-ref/source/player.cc
parent0cb617b22114c0dbf9cdc39a980e5695309661ab (diff)
downloadcrawl-ref-40e6cec1c6f46027dc07110dde8b14248f728d05.tar.gz
crawl-ref-40e6cec1c6f46027dc07110dde8b14248f728d05.zip
Deep dwarves get the same number of initial strength points as mountain
dwarves, so give their ghosts the same strength bonus that mountain dwarves get. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@9627 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 3a04aaecda..d452d731e5 100644
--- a/crawl-ref/source/player.cc
+++ b/crawl-ref/source/player.cc
@@ -6875,7 +6875,7 @@ bool player::permanent_levitation() const
bool player::permanent_flight() const
{
- return (airborne() && wearing_amulet( AMU_CONTROLLED_FLIGHT )
+ return (airborne() && wearing_amulet(AMU_CONTROLLED_FLIGHT)
&& you.species == SP_KENKU && you.experience_level >= 15);
}