summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/makeitem.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/makeitem.cc b/crawl-ref/source/makeitem.cc
index 3d8421ade8..ee473f1a04 100644
--- a/crawl-ref/source/makeitem.cc
+++ b/crawl-ref/source/makeitem.cc
@@ -1849,7 +1849,8 @@ static special_missile_type _determine_missile_brand(const item_def& item,
rc = SPMSL_REAPING;
else if (temp_rand < 110)
rc = SPMSL_SILVER;
- else if (temp_rand < 120)
+ // Make steel rarer at lower levels. {due}
+ else if (temp_rand < 120 && (you.your_level > 10 || one_chance_in(3)))
rc = SPMSL_STEEL;
else if (temp_rand < 130)
rc = SPMSL_DISPERSAL;