summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/output.cc
diff options
context:
space:
mode:
authorgammafunk <gammafunk@gmail.com>2014-05-26 05:21:20 -0500
committergammafunk <gammafunk@gmail.com>2014-05-26 22:45:16 -0500
commit55d1b512e3395f07e9341ce9eae5079b581b6894 (patch)
tree811704017046d8ed62335bd1c45d36476e0dea55 /crawl-ref/source/output.cc
parentb364f15f4eeff0e148b6fc026c01de1327254cd2 (diff)
downloadcrawl-ref-55d1b512e3395f07e9341ce9eae5079b581b6894.tar.gz
crawl-ref-55d1b512e3395f07e9341ce9eae5079b581b6894.zip
Remove player burden and carrying capacity
Item inventory weights (based on item mass) generally don't lead to meaningful decisions that justify the inventory juggling and interface problems that come from having burden states. The 52-slot limit is a better system for limiting inventory and providing inventory-related decisions because it's not so fine-grained and doesn't require the player to examine weights for each slot. Work is ongoing to improve the slot system by consolidating food types and handling strategic consumables in a different way.
Diffstat (limited to 'crawl-ref/source/output.cc')
-rw-r--r--crawl-ref/source/output.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/crawl-ref/source/output.cc b/crawl-ref/source/output.cc
index 4e1c7d37ca..8acf63b3be 100644
--- a/crawl-ref/source/output.cc
+++ b/crawl-ref/source/output.cc
@@ -962,7 +962,7 @@ static void _add_status_light_to_out(int i, vector<status_light>& out)
// - blue, light blue for good enchantments
// - magenta, light magenta for "better" enchantments (deflect, fly)
//
-// Prints burden, hunger,
+// Prints hunger,
// pray, holy, teleport, regen, fly/lev, invis, silence,
// conf. touch, sage
// confused, mesmerised, fire, poison, disease, rot, held, glow, swift,
@@ -1007,7 +1007,6 @@ static void _get_status_lights(vector<status_light>& out)
DUR_DEATHS_DOOR,
DUR_EXHAUSTED,
DUR_QUAD_DAMAGE,
- STATUS_BURDEN,
};
for (unsigned i = 0; i < ARRAYSZ(important_statuses) ; ++i)