summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/godprayer.cc
diff options
context:
space:
mode:
authorChris Campbell <chriscampbell89@gmail.com>2014-06-12 20:16:59 +0100
committerChris Campbell <chriscampbell89@gmail.com>2014-06-12 20:16:59 +0100
commit3c3d02167e7a198132d664d6c13a29548f42f8f7 (patch)
tree5a76119f2e947a781ccaa705aadec95b3552afcc /crawl-ref/source/godprayer.cc
parentae6d43520af7837038e1cbbc135fa5e24513cc56 (diff)
downloadcrawl-ref-3c3d02167e7a198132d664d6c13a29548f42f8f7.tar.gz
crawl-ref-3c3d02167e7a198132d664d6c13a29548f42f8f7.zip
Allow gods to rebrand blessed weapons again
Diffstat (limited to 'crawl-ref/source/godprayer.cc')
-rw-r--r--crawl-ref/source/godprayer.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/godprayer.cc b/crawl-ref/source/godprayer.cc
index 26beba4464..9bf34a8ac5 100644
--- a/crawl-ref/source/godprayer.cc
+++ b/crawl-ref/source/godprayer.cc
@@ -92,7 +92,7 @@ static bool _bless_weapon(god_type god, brand_type brand, int colour)
item_def& wpn(you.inv[item_slot]);
// Only TSO allows blessing ranged weapons.
- if (!is_brandable_weapon(wpn, brand == SPWPN_HOLY_WRATH))
+ if (!is_brandable_weapon(wpn, brand == SPWPN_HOLY_WRATH, true))
return false;
string prompt = "Do you wish to have " + wpn.name(DESC_YOUR)