summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/command.cc
diff options
context:
space:
mode:
authorRobert Vollmert <rvollmert@gmx.net>2009-11-22 17:55:26 +0100
committerRobert Vollmert <rvollmert@gmx.net>2009-11-22 18:26:09 +0100
commita0501938d1345ae84343cf2e980e429035f71eee (patch)
treeb672c38939a9ba8d542d8a34007092cf62a06d32 /crawl-ref/source/command.cc
parent95ac64548abc19efa65d6004c3437deecb051edf (diff)
downloadcrawl-ref-a0501938d1345ae84343cf2e980e429035f71eee.tar.gz
crawl-ref-a0501938d1345ae84343cf2e980e429035f71eee.zip
Fix vampire xp level check.
Diffstat (limited to 'crawl-ref/source/command.cc')
-rw-r--r--crawl-ref/source/command.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/command.cc b/crawl-ref/source/command.cc
index eb6b429e5e..1812751197 100644
--- a/crawl-ref/source/command.cc
+++ b/crawl-ref/source/command.cc
@@ -2296,7 +2296,7 @@ static void _add_formatted_keyhelp(column_composer &cols)
"<w>d#</w>: Drop exact number of items\n"
"<w>c</w> : Chop up a corpse";
- if (you.species == SP_VAMPIRE && you.experience >= 6)
+ if (you.species == SP_VAMPIRE && you.experience_level >= 6)
interact += " or bottle its blood";
interact +=