summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/player.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/player.cc')
-rw-r--r--crawl-ref/source/player.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/crawl-ref/source/player.cc b/crawl-ref/source/player.cc
index ac567372a5..e8181677a7 100644
--- a/crawl-ref/source/player.cc
+++ b/crawl-ref/source/player.cc
@@ -2876,7 +2876,10 @@ int player_sust_abil(bool calc_unid)
int carrying_capacity(burden_state_type bs)
{
- int cap = 3500 + (you.strength * 100) + (player_is_airborne() ? 1000 : 0);
+ int cap = (2 * you.body_weight) + (you.strength * 200)
+ + (player_is_airborne() ? 1000 : 0);
+ // We are nice to the lighter species in that strength adds absolutely
+ // instead of relatively to body weight. --dpeg
if (bs == BS_UNENCUMBERED)
return ((cap * 5) / 6);