summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/attitude-change.cc
diff options
context:
space:
mode:
authorChris Campbell <chriscampbell89@gmail.com>2013-07-10 19:18:43 +0100
committerChris Campbell <chriscampbell89@gmail.com>2013-07-10 19:35:42 +0100
commit405c76ce053f0ff52bdd9ec4e7f44a6e553644c3 (patch)
tree64ae609fb69a22b9f55c7f8c6d4a812bf09c953a /crawl-ref/source/attitude-change.cc
parent1addaaf8ee92de5060fdb436f93251843abd2035 (diff)
downloadcrawl-ref-405c76ce053f0ff52bdd9ec4e7f44a6e553644c3.tar.gz
crawl-ref-405c76ce053f0ff52bdd9ec4e7f44a6e553644c3.zip
Remove the orc slaying brand
It only ever generates on artefacts and is very unlikely to be relevant even when it does.
Diffstat (limited to 'crawl-ref/source/attitude-change.cc')
-rw-r--r--crawl-ref/source/attitude-change.cc10
1 files changed, 0 insertions, 10 deletions
diff --git a/crawl-ref/source/attitude-change.cc b/crawl-ref/source/attitude-change.cc
index daad2a4584..d25ffd1791 100644
--- a/crawl-ref/source/attitude-change.cc
+++ b/crawl-ref/source/attitude-change.cc
@@ -97,16 +97,6 @@ void beogh_follower_convert(monster* mons, bool orc_hit)
&& random2(you.piety / 15) + random2(4 + you.experience_level / 3)
> random2(hd) + hd + random2(5))
{
- if (you.weapon()
- && you.weapon()->base_type == OBJ_WEAPONS
- && get_weapon_brand(*you.weapon()) == SPWPN_ORC_SLAYING
- && coinflip()) // 50% chance of conversion failing
- {
- msg::stream << mons->name(DESC_THE)
- << " flinches from your weapon."
- << endl;
- return;
- }
beogh_convert_orc(mons, orc_hit);
stop_running();
}