summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spells1.cc
diff options
context:
space:
mode:
authorVsevolod Kozlov <zaba@thorium.homeunix.org>2009-11-05 19:28:56 +0300
committerRobert Vollmert <rvollmert@gmx.net>2009-11-05 17:31:29 +0100
commit48f785a271089f4f85bdfb5624b56b433e0ebd13 (patch)
tree3eaeea9d8cfe68e9545478f6f50d4cdb3a5aaab7 /crawl-ref/source/spells1.cc
parent0dc3e02bc8bc01336bd9421257635b49d646502d (diff)
downloadcrawl-ref-48f785a271089f4f85bdfb5624b56b433e0ebd13.tar.gz
crawl-ref-48f785a271089f4f85bdfb5624b56b433e0ebd13.zip
Replace uses of player_is_airborne with you.airborne.
Signed-off-by: Robert Vollmert <rvollmert@gmx.net>
Diffstat (limited to 'crawl-ref/source/spells1.cc')
-rw-r--r--crawl-ref/source/spells1.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/spells1.cc b/crawl-ref/source/spells1.cc
index fa95cae514..df0bcebb33 100644
--- a/crawl-ref/source/spells1.cc
+++ b/crawl-ref/source/spells1.cc
@@ -1481,7 +1481,7 @@ void cast_swiftness(int power)
void cast_fly(int power)
{
const int dur_change = 25 + random2(power) + random2(power);
- const bool was_levitating = player_is_airborne();
+ const bool was_levitating = you.airborne();
you.duration[DUR_LEVITATION] += dur_change;
if (you.duration[DUR_LEVITATION] > 100)