summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/player.cc
diff options
context:
space:
mode:
authorharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2008-09-25 23:32:44 +0000
committerharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2008-09-25 23:32:44 +0000
commita52e8315ee5b561e1c51f1865084b5dd9833b849 (patch)
tree7146dec90231b37e278350a5f39bb8f0552edd40 /crawl-ref/source/player.cc
parente44a4d8349036092b8c691ce1644263d3b4122a4 (diff)
downloadcrawl-ref-a52e8315ee5b561e1c51f1865084b5dd9833b849.tar.gz
crawl-ref-a52e8315ee5b561e1c51f1865084b5dd9833b849.zip
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
Diffstat (limited to 'crawl-ref/source/player.cc')
-rw-r--r--crawl-ref/source/player.cc9
1 files changed, 8 insertions, 1 deletions
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));