summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/enum.h
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2009-04-04 18:06:05 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2009-04-04 18:06:05 +0000
commitc8abbb6f1236d147674c8d88065b8400756ce686 (patch)
tree922e3d30273cfa94ef2efc4b3f04642d459a4c4f /crawl-ref/source/enum.h
parentc6ae3ddc627c3d8a2300ed6ca5afb62baf7db018 (diff)
downloadcrawl-ref-c8abbb6f1236d147674c8d88065b8400756ce686.tar.gz
crawl-ref-c8abbb6f1236d147674c8d88065b8400756ce686.zip
* Change TARG_NOT_SELF to TARG_HOSTILE (not to confused with TARG_ENEMY
that also includes neutral monsters) for Ely's Heal Other powers. * Update change log. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@9579 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/enum.h')
-rw-r--r--crawl-ref/source/enum.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/enum.h b/crawl-ref/source/enum.h
index dc1e511346..8420349fb3 100644
--- a/crawl-ref/source/enum.h
+++ b/crawl-ref/source/enum.h
@@ -1584,9 +1584,9 @@ enum mon_holy_type
enum targ_mode_type
{
TARG_ANY,
- TARG_ENEMY,
+ TARG_ENEMY, // hostile + neutral
TARG_FRIEND,
- TARG_NOT_SELF,
+ TARG_HOSTILE,
TARG_NUM_MODES
};