diff options
-rw-r--r-- | Changelog-Trunk.txt | 2 | ||||
-rw-r--r-- | src/map/skill.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt index 473b6618d..27b6c214d 100644 --- a/Changelog-Trunk.txt +++ b/Changelog-Trunk.txt @@ -3,6 +3,8 @@ Date Added AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO INTO TRUNK. IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK. +2007/04/25 + * Spider Web / Fiber Lock status cannot be dispelled now [ultramage] 2007/04/24 * All mob casted skills have a fixed range of 9 now. * Pressure no longer vaporizes plants. diff --git a/src/map/skill.c b/src/map/skill.c index 48c9240b1..e23397529 100644 --- a/src/map/skill.c +++ b/src/map/skill.c @@ -4715,7 +4715,7 @@ int skill_castend_nodamage_id (struct block_list *src, struct block_list *bl, in case SC_GUILDAURA: case SC_EDP: case SC_AUTOBERSERK: case SC_CARTBOOST: case SC_MELTDOWN: case SC_SAFETYWALL: case SC_SMA: case SC_SPEEDUP0: case SC_NOCHAT: - case SC_ANKLE: case SC_JAILED: + case SC_ANKLE: case SC_SPIDERWEB: case SC_JAILED: continue; } if(i==SC_BERSERK) tsc->data[i].val2=0; //Mark a dispelled berserk to avoid setting hp to 100 by setting hp penalty to 0. |