diff options
author | Playtester <Playtester@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-05-06 09:11:48 +0000 |
---|---|---|
committer | Playtester <Playtester@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-05-06 09:11:48 +0000 |
commit | 9b0f6db206ac0d5b9e905831050402c3ffed064c (patch) | |
tree | 6eb3601ebca09088d3c9b3f52afdac1ea92819b1 /src/map | |
parent | 80120eb5d9f0783628889c450ee8940da47cee6a (diff) | |
download | hercules-9b0f6db206ac0d5b9e905831050402c3ffed064c.tar.gz hercules-9b0f6db206ac0d5b9e905831050402c3ffed064c.tar.bz2 hercules-9b0f6db206ac0d5b9e905831050402c3ffed064c.tar.xz hercules-9b0f6db206ac0d5b9e905831050402c3ffed064c.zip |
* Fixed Converters not overwriting each other
- thanks to scerez for the fix
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@10490 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map')
-rw-r--r-- | src/map/skill.c | 2 | ||||
-rw-r--r-- | src/map/status.c | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/src/map/skill.c b/src/map/skill.c index 813018852..7f0959f2f 100644 --- a/src/map/skill.c +++ b/src/map/skill.c @@ -9683,6 +9683,8 @@ int skill_enchant_elemental_end (struct block_list *bl, int type) status_change_end(bl, SC_SHADOWWEAPON, -1); if (type != SC_GHOSTWEAPON && sc->data[SC_GHOSTWEAPON].timer != -1) status_change_end(bl, SC_GHOSTWEAPON, -1); + if (type != SC_ENCHANTARMS && sc->data[SC_ENCHANTARMS].timer != -1) + status_change_end(bl, SC_ENCHANTARMS, -1); return 0; } diff --git a/src/map/status.c b/src/map/status.c index c968fd58e..af86c8951 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -5755,6 +5755,7 @@ int status_change_start(struct block_list *bl,int type,int rate,int val1,int val val2 = val2%ELE_MAX; else if (val2 < 0) val2 = rand()%ELE_MAX; + skill_enchant_elemental_end(bl,type); break; case SC_ARMOR_ELEMENT: //Place here SCs that have no SCB_* data, no skill associated, no ICON |