summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spl-cast.cc
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-07-14 19:23:10 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-07-14 19:23:10 +0000
commit5db5426d5582062f0279b52aeb709ab5b305a3b7 (patch)
treecfd59cb063dec58668621af4263b1def8aee4136 /crawl-ref/source/spl-cast.cc
parent528f1a17029220a1fdb35b335c6352bebe50903a (diff)
downloadcrawl-ref-5db5426d5582062f0279b52aeb709ab5b305a3b7.tar.gz
crawl-ref-5db5426d5582062f0279b52aeb709ab5b305a3b7.zip
Switched confusing touch success calc to the 4.1.2 model, where it's a simple
no-spell-skill roll against HD (ignoring monster MR). This makes confusing touch more useful to part-time casters. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@1864 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/spl-cast.cc')
-rw-r--r--crawl-ref/source/spl-cast.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/spl-cast.cc b/crawl-ref/source/spl-cast.cc
index a54f09dbb6..70bf35da7b 100644
--- a/crawl-ref/source/spl-cast.cc
+++ b/crawl-ref/source/spl-cast.cc
@@ -467,7 +467,7 @@ int calc_spell_power(spell_type spell, bool apply_intel, bool fail_rate_check)
unsigned int disciplines = get_spell_disciplines( spell );
//jmf: evil evil evil -- exclude HOLY bit
- disciplines &= (~SPTYP_HOLY);
+ disciplines &= (~SPTYP_HOLY);
int skillcount = count_bits( disciplines );
if (skillcount)