From b6484c07a27d0856140792f33397930f9e6e7689 Mon Sep 17 00:00:00 2001 From: dolorous Date: Tue, 7 Oct 2008 03:09:27 +0000 Subject: Fix flight type handling so that spectral things can at least always levitate again (since their class can), regardless of what actual type they are. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@7169 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/abl-show.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'crawl-ref/source/abl-show.cc') 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."); -- cgit v1.2.3-54-g00ecf