From a52e8315ee5b561e1c51f1865084b5dd9833b849 Mon Sep 17 00:00:00 2001 From: haranp Date: Thu, 25 Sep 2008 23:32:44 +0000 Subject: 2127754: better '@' messaging for kenku regarding burden. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@6997 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/player.cc | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'crawl-ref/source/player.cc') diff --git a/crawl-ref/source/player.cc b/crawl-ref/source/player.cc index 979ec72fc1..8cbdb12e3b 100644 --- a/crawl-ref/source/player.cc +++ b/crawl-ref/source/player.cc @@ -3693,7 +3693,7 @@ void display_char_status() if (you.haloed()) { - int halo_size = halo_radius(); + const int halo_size = halo_radius(); if (halo_size > 6) mpr( "You are illuminated by a large divine halo." ); else if (halo_size > 3) @@ -3801,6 +3801,13 @@ void display_char_status() mpr("You are burdened."); else if (you.burden_state == BS_OVERLOADED) mpr("You are overloaded with stuff."); + else if (you.species == SP_KENKU && you.flight_mode() == FL_FLY) + { + if (you.travelling_light()) + mpr("Your small burden allows quick flight."); + else + mpr("Your heavy burden is slowing your flight."); + } if (you.duration[DUR_SAGE]) mprf("You are studying %s.", skill_name(you.sage_bonus_skill)); -- cgit v1.2.3-54-g00ecf