summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/externs.h
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-18 01:59:10 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-18 01:59:10 +0000
commit24dcf42aa81549a812a8a12372243877137460ad (patch)
tree7e246fb591b68f3a3fa54bfee749a23c6703a575 /crawl-ref/source/externs.h
parent26bb11fa449a58903e147e57c6b44eeec9180ad3 (diff)
downloadcrawl-ref-24dcf42aa81549a812a8a12372243877137460ad.tar.gz
crawl-ref-24dcf42aa81549a812a8a12372243877137460ad.zip
Generalize the check for unchivalric attacks via cleansing flame.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@8527 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/externs.h')
-rw-r--r--crawl-ref/source/externs.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/externs.h b/crawl-ref/source/externs.h
index c600b6f648..85c1920513 100644
--- a/crawl-ref/source/externs.h
+++ b/crawl-ref/source/externs.h
@@ -386,7 +386,7 @@ public:
virtual int res_asphyx() const = 0;
virtual int res_poison() const = 0;
virtual int res_sticky_flame() const = 0;
- virtual int res_cleansing_flame() const = 0;
+ virtual int res_cleansing_flame(const actor *attacker) const = 0;
virtual int res_negative_energy() const = 0;
virtual int res_rotting() const = 0;
virtual int res_torment() const = 0;
@@ -1094,7 +1094,7 @@ public:
int res_asphyx() const;
int res_poison() const;
int res_sticky_flame() const;
- int res_cleansing_flame() const;
+ int res_cleansing_flame(const actor *) const;
int res_negative_energy() const;
int res_rotting() const;
int res_torment() const;
@@ -1469,7 +1469,7 @@ public:
int res_asphyx() const;
int res_poison() const;
int res_sticky_flame() const;
- int res_cleansing_flame() const;
+ int res_cleansing_flame(const actor *) const;
int res_negative_energy() const;
int res_rotting() const;
int res_torment() const;