summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/item_use.cc
diff options
context:
space:
mode:
authorChris Campbell <chriscampbell89@gmail.com>2014-07-02 04:18:46 +0100
committerChris Campbell <chriscampbell89@gmail.com>2014-07-02 18:54:26 +0100
commit9daf176f7a7e5a45ae4be44794f920c524d44054 (patch)
tree4a9205782c635535bd5901ca5f31a5928a7eadda /crawl-ref/source/item_use.cc
parent5b88333b5fe9f0142eddeabb356199521bb16d06 (diff)
downloadcrawl-ref-9daf176f7a7e5a45ae4be44794f920c524d44054.tar.gz
crawl-ref-9daf176f7a7e5a45ae4be44794f920c524d44054.zip
Make vorpal a more common result from ?brand weapon
Since the scroll no longer always makes unbranded weapons vorpal.
Diffstat (limited to 'crawl-ref/source/item_use.cc')
-rw-r--r--crawl-ref/source/item_use.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/item_use.cc b/crawl-ref/source/item_use.cc
index 62a61d2119..dc3ad4ab31 100644
--- a/crawl-ref/source/item_use.cc
+++ b/crawl-ref/source/item_use.cc
@@ -2167,9 +2167,9 @@ static void _rebrand_weapon(item_def& wpn)
new_brand = random_choose_weighted(
30, SPWPN_FLAMING,
30, SPWPN_FREEZING,
+ 25, SPWPN_VORPAL,
20, SPWPN_VENOM,
15, SPWPN_DRAINING,
- 15, SPWPN_VORPAL,
15, SPWPN_ELECTROCUTION,
12, SPWPN_PROTECTION,
8, SPWPN_VAMPIRISM,