summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/makeitem.cc
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2008-03-15 20:22:33 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2008-03-15 20:22:33 +0000
commit1dbb0292f25602f8158b666783d68bbd35e1c9e2 (patch)
tree8ed22977a2f0631fa4bc30ebbe630af2c366ba37 /crawl-ref/source/makeitem.cc
parent2515dbc8f2b9d39993f35433180e0f5840e0eb09 (diff)
downloadcrawl-ref-1dbb0292f25602f8158b666783d68bbd35e1c9e2.tar.gz
crawl-ref-1dbb0292f25602f8158b666783d68bbd35e1c9e2.zip
Removed mutation depth restriction as suggested by the mutant overlords of ##crawl.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@3658 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/makeitem.cc')
-rw-r--r--crawl-ref/source/makeitem.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/crawl-ref/source/makeitem.cc b/crawl-ref/source/makeitem.cc
index fff9b1a177..5f6178d173 100644
--- a/crawl-ref/source/makeitem.cc
+++ b/crawl-ref/source/makeitem.cc
@@ -2311,8 +2311,7 @@ static void generate_potion_item(item_def& item, int force_type,
10, POT_DECAY,
0);
} while ( (stype == POT_POISON && item_level < 1) ||
- (stype == POT_STRONG_POISON && item_level < 11) ||
- (stype == POT_MUTATION && item_level < 7) );
+ (stype == POT_STRONG_POISON && item_level < 11) );
if ( stype == POT_GAIN_STRENGTH || stype == POT_GAIN_DEXTERITY ||
stype == POT_GAIN_INTELLIGENCE || stype == POT_EXPERIENCE ||