summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/religion.cc
diff options
context:
space:
mode:
authorreaverb <reaverb.Crawl@gmail.com>2014-06-10 02:10:52 -0400
committerreaverb <reaverb.Crawl@gmail.com>2014-06-10 12:58:57 -0400
commit7e81480cda18144ff185f5248639a072b654deff (patch)
treeee96229a36d8ab5c00b5032093771796717857e8 /crawl-ref/source/religion.cc
parent37dca8855d8c35d9f63bdafe54b967e7f831bb0b (diff)
downloadcrawl-ref-7e81480cda18144ff185f5248639a072b654deff.tar.gz
crawl-ref-7e81480cda18144ff185f5248639a072b654deff.zip
Make random_choose_weighted() end on -1 weight
For consistency with random_choose().
Diffstat (limited to 'crawl-ref/source/religion.cc')
-rw-r--r--crawl-ref/source/religion.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/religion.cc b/crawl-ref/source/religion.cc
index 54f024d85a..d86484ced9 100644
--- a/crawl-ref/source/religion.cc
+++ b/crawl-ref/source/religion.cc
@@ -1489,7 +1489,7 @@ static bool _give_nemelex_gift(bool forced = false)
misc_item_type gift_type = random_choose_weighted(
8, MISC_DECK_OF_WAR,
2, MISC_DECK_OF_ESCAPE,
- 0);
+ -1);
int thing_created = items(1, OBJ_MISCELLANY, gift_type,
true, 1, 0, 0, 0, GOD_NEMELEX_XOBEH);
@@ -1519,7 +1519,7 @@ static bool _give_nemelex_gift(bool forced = false)
common_weight, DECK_RARITY_COMMON,
rare_weight, DECK_RARITY_RARE,
legend_weight, DECK_RARITY_LEGENDARY,
- 0);
+ -1);
item_def &deck(mitm[thing_created]);