diff options
author | Michieru <Michieru@users.noreply.github.com> | 2015-05-21 11:28:42 +0200 |
---|---|---|
committer | Michieru <Michieru@users.noreply.github.com> | 2015-05-21 11:28:42 +0200 |
commit | c6c1160e9842abc86f6e51dc59ca6533656043f9 (patch) | |
tree | 9abfff39dbccfb15ba97848b5c63a2f5edd32d2f /src | |
parent | fb4da089ffee25947a55b13ed46c86e3865629cd (diff) | |
download | hercules-c6c1160e9842abc86f6e51dc59ca6533656043f9.tar.gz hercules-c6c1160e9842abc86f6e51dc59ca6533656043f9.tar.bz2 hercules-c6c1160e9842abc86f6e51dc59ca6533656043f9.tar.xz hercules-c6c1160e9842abc86f6e51dc59ca6533656043f9.zip |
* Follow-up to 5be01dc
- effect was give at 100% chance
- Special thanks to Haru
Diffstat (limited to 'src')
-rw-r--r-- | src/map/skill.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/skill.c b/src/map/skill.c index 70a7a565e..48dfebe2b 100644 --- a/src/map/skill.c +++ b/src/map/skill.c @@ -699,7 +699,7 @@ int skill_additional_effect(struct block_list* src, struct block_list *bl, uint1 if (sd->addeff[i].duration > 0) { // Fixed duration temp = sd->addeff[i].duration; - flag = SCFLAG_NOAVOID; + flag = SCFLAG_FIXEDRATE|SCFLAG_FIXEDTICK; } else { // Default duration temp = skill->get_time2(status->sc2skill(type),7); |