summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/l_you.cc
diff options
context:
space:
mode:
authorgammafunk <gammafunk@gmail.com>2014-05-25 12:56:17 -0500
committergammafunk <gammafunk@gmail.com>2014-05-28 12:50:50 -0500
commitafd1d1232c60c598fa064e3417b928de33d77a49 (patch)
treeb8aa0814e03567077897e6c6c453987b62503e31 /crawl-ref/source/l_you.cc
parent4412034ca0e58c61c99658f6d498f3415480dcfa (diff)
downloadcrawl-ref-afd1d1232c60c598fa064e3417b928de33d77a49.tar.gz
crawl-ref-afd1d1232c60c598fa064e3417b928de33d77a49.zip
Remove jewelry and armour sources of conservation
The amulet of conservation and cloaks of preservation are no longer necessary without item destruction. Maxwell's patent armour now has the resistance ego and grants rF+ and rC+.
Diffstat (limited to 'crawl-ref/source/l_you.cc')
-rw-r--r--crawl-ref/source/l_you.cc2
1 files changed, 0 insertions, 2 deletions
diff --git a/crawl-ref/source/l_you.cc b/crawl-ref/source/l_you.cc
index 1634ab1063..c188baa741 100644
--- a/crawl-ref/source/l_you.cc
+++ b/crawl-ref/source/l_you.cc
@@ -121,7 +121,6 @@ LUARET1(you_see_invisible, boolean, you.can_see_invisible(false))
// Returning a number so as not to break existing scripts.
LUARET1(you_spirit_shield, number, you.spirit_shield(false) ? 1 : 0)
LUARET1(you_gourmand, boolean, you.gourmand(false))
-LUARET1(you_conservation, boolean, you.conservation(false))
LUARET1(you_res_corr, boolean, you.res_corr(false))
LUARET1(you_like_chunks, number, player_likes_chunks(true))
LUARET1(you_saprovorous, number, player_mutation_level(MUT_SAPROVOROUS))
@@ -466,7 +465,6 @@ static const struct luaL_reg you_clib[] =
{ "saprovorous", you_saprovorous },
{ "like_chunks", you_like_chunks },
{ "gourmand", you_gourmand },
- { "conservation", you_conservation },
{ "res_corr", you_res_corr },
{ "flying", you_flying },
{ "transform", you_transform },