diff options
author | rud0lp20 <rud0lp20@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-06-03 14:54:06 +0000 |
---|---|---|
committer | rud0lp20 <rud0lp20@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-06-03 14:54:06 +0000 |
commit | 77432c2e8406cef71baf73c1374b52be883f1dcc (patch) | |
tree | f595808572cac871b3abb81cd90bca19fd04ac2f /src/map/pc.c | |
parent | a5014cad6007ecc0b6fc195a829a1dc836fdfc68 (diff) | |
download | hercules-77432c2e8406cef71baf73c1374b52be883f1dcc.tar.gz hercules-77432c2e8406cef71baf73c1374b52be883f1dcc.tar.bz2 hercules-77432c2e8406cef71baf73c1374b52be883f1dcc.tar.xz hercules-77432c2e8406cef71baf73c1374b52be883f1dcc.zip |
Fixed bugreport:5911 Reflect Damage should now cancel when shield/guard is unequipped.
Fixed bugreport:4828 LG_PINPOINTATTACK should now only work with spears.
Fixed bugreport:5905 All heal support skill now can't work with Mado Gear.
Fixed other non Mado related skill that it should not work when Mado is equipped.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16217 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/pc.c')
-rw-r--r-- | src/map/pc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/map/pc.c b/src/map/pc.c index bc3ee1acd..71950a032 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -4665,7 +4665,8 @@ int pc_checkallowskill(struct map_session_data *sd) const enum sc_type scs_list[] = { SC_AUTOGUARD, SC_DEFENDER, - SC_REFLECTSHIELD + SC_REFLECTSHIELD, + SC_REFLECTDAMAGE }; int i; nullpo_ret(sd); |