summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/makeitem.cc
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2008-03-15 20:16:40 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2008-03-15 20:16:40 +0000
commit2515dbc8f2b9d39993f35433180e0f5840e0eb09 (patch)
treee370e36c3da4f9f809a729817fdf22f591d44c3f /crawl-ref/source/makeitem.cc
parent03b66a80f14bf2ae2588f9a4d5cf68fcbc6fcf78 (diff)
downloadcrawl-ref-2515dbc8f2b9d39993f35433180e0f5840e0eb09.tar.gz
crawl-ref-2515dbc8f2b9d39993f35433180e0f5840e0eb09.zip
[1914615] Fixed potions of mutation accidentally becoming eligible for early generation.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@3657 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/makeitem.cc')
-rw-r--r--crawl-ref/source/makeitem.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/makeitem.cc b/crawl-ref/source/makeitem.cc
index 4fc9f2b377..fff9b1a177 100644
--- a/crawl-ref/source/makeitem.cc
+++ b/crawl-ref/source/makeitem.cc
@@ -2312,7 +2312,7 @@ static void generate_potion_item(item_def& item, int force_type,
0);
} while ( (stype == POT_POISON && item_level < 1) ||
(stype == POT_STRONG_POISON && item_level < 11) ||
- (stype == POT_SLOWING && item_level < 7) );
+ (stype == POT_MUTATION && item_level < 7) );
if ( stype == POT_GAIN_STRENGTH || stype == POT_GAIN_DEXTERITY ||
stype == POT_GAIN_INTELLIGENCE || stype == POT_EXPERIENCE ||