summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/makeitem.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-22 09:27:55 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-22 09:27:55 +0000
commit7da2a9fee7d7d079069fa698dc21c1b63f0d0b79 (patch)
treed394b714880957f14cc435b1d31608d68fa3f862 /crawl-ref/source/makeitem.cc
parentd8293d7a060825baad3044969d895d3d8d039ebc (diff)
downloadcrawl-ref-7da2a9fee7d7d079069fa698dc21c1b63f0d0b79.tar.gz
crawl-ref-7da2a9fee7d7d079069fa698dc21c1b63f0d0b79.zip
Increase the probability of randomly generated elven blowguns a bit.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@8691 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 4f91de32a9..838750ed0d 100644
--- a/crawl-ref/source/makeitem.cc
+++ b/crawl-ref/source/makeitem.cc
@@ -1096,7 +1096,7 @@ static item_status_flag_type _determine_weapon_race(const item_def& item,
break;
case WPN_BLOWGUN:
- if (one_chance_in(10))
+ if (one_chance_in(6))
rc = ISFLAG_ELVEN;
if (one_chance_in(4))
rc = ISFLAG_ORCISH;