summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/skill_menu.cc
diff options
context:
space:
mode:
authorChris Campbell <chriscampbell89@gmail.com>2014-05-01 11:25:46 +0100
committerChris Campbell <chriscampbell89@gmail.com>2014-05-09 05:30:22 +0100
commit82f6ad17de140911205a720b336cfa36603c8532 (patch)
treeeb6e2b8bb35965eba5d38a68452f94ad20130dae /crawl-ref/source/skill_menu.cc
parent9e88b4757e9ef1b02dfbbdb8e026245897608b33 (diff)
downloadcrawl-ref-82f6ad17de140911205a720b336cfa36603c8532.tar.gz
crawl-ref-82f6ad17de140911205a720b336cfa36603c8532.zip
Remove decks of dungeons and a number of now-unused cards
Decks of dungeons were no longer gifted and only generated very rarely. Most of the cards in it (as well as some cards just removed from wonders) were either uninteresting or problematic for various reasons. The removed cards are Experience, Sage, Water, Glass, Trowel, Minefield.
Diffstat (limited to 'crawl-ref/source/skill_menu.cc')
-rw-r--r--crawl-ref/source/skill_menu.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/skill_menu.cc b/crawl-ref/source/skill_menu.cc
index 1210b997ba..a9db497495 100644
--- a/crawl-ref/source/skill_menu.cc
+++ b/crawl-ref/source/skill_menu.cc
@@ -1479,7 +1479,7 @@ void SkillMenu::set_links()
void skill_menu(int flag, int exp)
{
- // potion or card; you may elect to sin against Trog
+ // experience potion; you may elect to sin against Trog
if (flag & SKMF_EXPERIENCE && all_skills_maxed(true))
{
mpr("You feel omnipotent.");
@@ -1500,7 +1500,7 @@ void skill_menu(int flag, int exp)
int keyn;
// Calling a user lua function here to let players automatically accept
- // the given skill distribution for a potion or card of experience.
+ // the given skill distribution for a potion of experience.
if (skm.is_set(SKMF_EXPERIENCE)
&& clua.callbooleanfn(false, "auto_experience", NULL)
&& skm.exit())