summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/abl-show.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/abl-show.cc')
-rw-r--r--crawl-ref/source/abl-show.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/abl-show.cc b/crawl-ref/source/abl-show.cc
index 2559e76713..bc0a29fb98 100644
--- a/crawl-ref/source/abl-show.cc
+++ b/crawl-ref/source/abl-show.cc
@@ -844,10 +844,10 @@ bool activate_ability()
else if (you.species == SP_KENKU && you.experience_level >= 5
|| player_mutation_level(MUT_BIG_WINGS))
{
- if (you.flight_mode() == FL_FLY)
- mpr("You're already flying!");
- else if (you.flight_mode() == FL_LEVITATE)
+ if (you.flight_mode() == FL_LEVITATE)
mpr("You can only start flying from the ground.");
+ else if (you.flight_mode() == FL_FLY)
+ mpr("You're already flying!");
}
else
mpr("Sorry, you're not good enough to have a special ability.");