summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/externs.h
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-09-20 14:46:47 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-09-20 14:46:47 +0000
commitd9d67a71bcda20fd3c629ba2475396a91afe0d16 (patch)
tree95b838c4c273ca823cf669c4a14df51f3bc8f09d /crawl-ref/source/externs.h
parent7f87a01c11f21ffa4dbb9660268eaa88494237ae (diff)
downloadcrawl-ref-d9d67a71bcda20fd3c629ba2475396a91afe0d16.tar.gz
crawl-ref-d9d67a71bcda20fd3c629ba2475396a91afe0d16.zip
Convert asphyxiation resistance to a boolean, since you can either be
asphyxiated or not. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@10742 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 069d5d81b8..f6104eaa72 100644
--- a/crawl-ref/source/externs.h
+++ b/crawl-ref/source/externs.h
@@ -385,8 +385,8 @@ public:
virtual int res_steam() const = 0;
virtual int res_cold() const = 0;
virtual int res_elec() const = 0;
- virtual int res_asphyx() const = 0;
virtual int res_poison() const = 0;
+ virtual int res_asphyx() const = 0;
virtual int res_sticky_flame() const = 0;
virtual int res_rotting() const = 0;
virtual int res_holy_energy(const actor *attacker) const = 0;
@@ -1112,8 +1112,8 @@ public:
int res_steam() const;
int res_cold() const;
int res_elec() const;
- int res_asphyx() const;
int res_poison() const;
+ int res_asphyx() const;
int res_sticky_flame() const;
int res_rotting() const;
int res_holy_energy(const actor *) const;
@@ -1473,8 +1473,8 @@ public:
int res_steam() const;
int res_cold() const;
int res_elec() const;
- int res_asphyx() const;
int res_poison() const;
+ int res_asphyx() const;
int res_sticky_flame() const;
int res_rotting() const;
int res_holy_energy(const actor *) const;