summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/player.cc
diff options
context:
space:
mode:
authorDavid Ploog <dploog@users.sourceforge.net>2009-11-13 20:08:44 +0100
committerDavid Ploog <dploog@users.sourceforge.net>2009-11-13 20:10:07 +0100
commit7ac3138dd9288b88b2bc2781af9684a4ba53153f (patch)
tree32c1b20bc7ebe036a4cd246d9693394d35057db2 /crawl-ref/source/player.cc
parent40ce8c0ee030a84d9736747f12df738ffea8c40a (diff)
downloadcrawl-ref-7ac3138dd9288b88b2bc2781af9684a4ba53153f.tar.gz
crawl-ref-7ac3138dd9288b88b2bc2781af9684a4ba53153f.zip
Increase effect of Str on carrying capacity.
Was 20 per point of Str, is 30. (Used to be 10 in the dark past.)
Diffstat (limited to 'crawl-ref/source/player.cc')
-rw-r--r--crawl-ref/source/player.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/player.cc b/crawl-ref/source/player.cc
index aeff736ad1..39b9f2242d 100644
--- a/crawl-ref/source/player.cc
+++ b/crawl-ref/source/player.cc
@@ -2365,7 +2365,7 @@ int player_sust_abil(bool calc_unid)
int carrying_capacity(burden_state_type bs)
{
- int cap = (2 * you.body_weight()) + (you.strength * 200)
+ int cap = (2 * you.body_weight()) + (you.strength * 300)
+ (you.airborne() ? 1000 : 0);
// We are nice to the lighter species in that strength adds absolutely
// instead of relatively to body weight. --dpeg