diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-03-05 19:14:58 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-03-05 19:14:58 +0000 |
commit | 6cb1278f000d3a9a14d2a5d2c30d2b008894a6b7 (patch) | |
tree | bdd59dd002425dca42739d9afadbde3dee6ae33e /src/map/skill.h | |
parent | db904cf8febd9a2097a49ab7af9447379e2ae749 (diff) | |
download | hercules-6cb1278f000d3a9a14d2a5d2c30d2b008894a6b7.tar.gz hercules-6cb1278f000d3a9a14d2a5d2c30d2b008894a6b7.tar.bz2 hercules-6cb1278f000d3a9a14d2a5d2c30d2b008894a6b7.tar.xz hercules-6cb1278f000d3a9a14d2a5d2c30d2b008894a6b7.zip |
- Fixed remove trap by updating the definition of INF_GROUND_SKILL (it shouldn't include target-targetting skills!)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@5468 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/skill.h')
-rw-r--r-- | src/map/skill.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/map/skill.h b/src/map/skill.h index 46752ed11..a87daa66a 100644 --- a/src/map/skill.h +++ b/src/map/skill.h @@ -14,8 +14,7 @@ //Constants to identify the skill's inf value:
#define INF_ATTACK_SKILL 1
-//For the time being, all trap-targetted skills ARE ground based:
-#define INF_GROUND_SKILL (2|32)
+#define INF_GROUND_SKILL 2
// Skills casted on self where target is automatically chosen:
#define INF_SELF_SKILL 4
#define INF_SUPPORT_SKILL 16
|