summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/player.h
diff options
context:
space:
mode:
authorgammafunk <gammafunk@gmail.com>2014-05-25 10:01:22 -0500
committergammafunk <gammafunk@gmail.com>2014-05-28 12:50:50 -0500
commit4412034ca0e58c61c99658f6d498f3415480dcfa (patch)
tree22ac0e79d4fd247aeda996849a566b2d205a8c96 /crawl-ref/source/player.h
parent12a312a68c4aae7d6e8dc669c6b782327fbb9be9 (diff)
downloadcrawl-ref-4412034ca0e58c61c99658f6d498f3415480dcfa.tar.gz
crawl-ref-4412034ca0e58c61c99658f6d498f3415480dcfa.zip
Destroy item destruction
Now that inventory weight and player burden states are gone, item destruction doesn't serve one purpose it clearly accomplished: help prevent the player from being at or next to burden capacity at all times. Outright destruction of strategic consumables encourages more needless inventory management, so we'd like to exclude these from any form of destruction and possibly prevent them from taking up inventory space at all. Denial of tactical consumables, either temporarily or permanently, is something we're going to look into later on, possibly in the release after next, since it can create interesting and generally not frustrating gameplay if done correctly. Needless to say, item destruction wasn't a player favorite and may have a sparsely attended funeral. RIP in peace. For now we aren't adjusting the rate of consumable generation to compensate for no item destruction, but that balancing will happen after play-testing shows how much adjustment is necessary.
Diffstat (limited to 'crawl-ref/source/player.h')
-rw-r--r--crawl-ref/source/player.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/crawl-ref/source/player.h b/crawl-ref/source/player.h
index c26d02b0f9..f0a44ad03b 100644
--- a/crawl-ref/source/player.h
+++ b/crawl-ref/source/player.h
@@ -582,7 +582,6 @@ public:
void drain_stat(stat_type stat, int amount, actor* attacker);
void expose_to_element(beam_type element, int strength = 0,
- bool damage_inventory = true,
bool slow_cold_blood = true);
void god_conduct(conduct_type thing_done, int level);