summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/makeitem.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-03-02 08:14:06 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-03-02 08:14:06 +0000
commitda683c2f2f2474d0494eb280deae1fb11d6c8de2 (patch)
tree0d92628d95979c0960e01a312e5de41d7ca77732 /crawl-ref/source/makeitem.cc
parent2f55bb611d1d8ba115b57efce9aa054479d33a15 (diff)
downloadcrawl-ref-da683c2f2f2474d0494eb280deae1fb11d6c8de2.tar.gz
crawl-ref-da683c2f2f2474d0494eb280deae1fb11d6c8de2.zip
Tweak probabilities of racial helmets a bit.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@9311 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/makeitem.cc')
-rw-r--r--crawl-ref/source/makeitem.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/makeitem.cc b/crawl-ref/source/makeitem.cc
index 60dbc7bceb..35a3af0bab 100644
--- a/crawl-ref/source/makeitem.cc
+++ b/crawl-ref/source/makeitem.cc
@@ -1931,9 +1931,9 @@ static item_status_flag_type _determine_armour_race(const item_def& item,
break;
case ARM_HELMET:
- if (one_chance_in(8))
- rc = ISFLAG_ORCISH;
if (one_chance_in(6))
+ rc = ISFLAG_ORCISH;
+ if (one_chance_in(5))
rc = ISFLAG_DWARVEN;
break;