summaryrefslogtreecommitdiff
path: root/src/map/pc.c
diff options
context:
space:
mode:
authorInkfish <Inkfish@54d463be-8e91-2dee-dedb-b68131a5f0ec>2009-07-04 13:17:08 +0000
committerInkfish <Inkfish@54d463be-8e91-2dee-dedb-b68131a5f0ec>2009-07-04 13:17:08 +0000
commit65d3824a9e6732760ce0e12201f8b856e097d08e (patch)
tree50d3a303149dd7c6f904166fb743d2d0a63dac87 /src/map/pc.c
parentadb0530acc2d47f904297133808b3f48fff1a6a1 (diff)
downloadhercules-65d3824a9e6732760ce0e12201f8b856e097d08e.tar.gz
hercules-65d3824a9e6732760ce0e12201f8b856e097d08e.tar.bz2
hercules-65d3824a9e6732760ce0e12201f8b856e097d08e.tar.xz
hercules-65d3824a9e6732760ce0e12201f8b856e097d08e.zip
* Extended ATF_SKILL to ATF_MAGIC and ATF_MISC.
* r13932 Fixed a wrong check on hp in Intimidate code. (bugreport:3305) (I forgot to write the message.) git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13933 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/pc.c')
-rw-r--r--src/map/pc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/pc.c b/src/map/pc.c
index 6c2bffeb8..603f2df97 100644
--- a/src/map/pc.c
+++ b/src/map/pc.c
@@ -1487,7 +1487,7 @@ static int pc_bonus_addeff(struct s_addeffect* effect, int max, enum sc_type id,
flag|=ATF_SHORT|ATF_LONG; //Default range: both
if (!(flag&(ATF_TARGET|ATF_SELF)))
flag|=ATF_TARGET; //Default target: enemy.
- if (!(flag&(ATF_WEAPON|ATF_SKILL)))
+ if (!(flag&(ATF_WEAPON|ATF_MAGIC|ATF_MISC)))
flag|=ATF_WEAPON; //Defatul type: weapon.
for (i = 0; i < max && effect[i].flag; i++) {