summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/shopping.cc
diff options
context:
space:
mode:
authorharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2007-10-16 09:32:26 +0000
committerharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2007-10-16 09:32:26 +0000
commit7ef7c9267668eb9187532ef5f96fcec5999ecd04 (patch)
tree84173ec0722cdc1cdea55b454d635746edffa6cd /crawl-ref/source/shopping.cc
parent34a06cacc3a678326aeb913c299a2a118ce8ab9f (diff)
downloadcrawl-ref-7ef7c9267668eb9187532ef5f96fcec5999ecd04.tar.gz
crawl-ref-7ef7c9267668eb9187532ef5f96fcec5999ecd04.zip
Forgetfulness removed; it's now a scroll of fog with a 1-in-10 chance
of producing miasma instead. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@2485 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/shopping.cc')
-rw-r--r--crawl-ref/source/shopping.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/crawl-ref/source/shopping.cc b/crawl-ref/source/shopping.cc
index a0d6a8192a..a410cb0719 100644
--- a/crawl-ref/source/shopping.cc
+++ b/crawl-ref/source/shopping.cc
@@ -1254,6 +1254,9 @@ unsigned int item_value( item_def item, bool ident )
case SCR_IDENTIFY:
valued += 20;
break;
+ case SCR_FOG:
+ valued += 10;
+ break;
case SCR_NOISE:
case SCR_RANDOM_USELESSNESS:
valued += 2;
@@ -1262,7 +1265,6 @@ unsigned int item_value( item_def item, bool ident )
case SCR_CURSE_WEAPON:
case SCR_PAPER:
case SCR_IMMOLATION:
- case SCR_FORGETFULNESS:
valued++;
break;
}