diff options
-rw-r--r-- | Changelog-Trunk.txt | 2 | ||||
-rw-r--r-- | src/map/skill.c | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt index 35b49a720..e84d9dfcd 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. +2009/03/01 + * Ankle Snare cannot be knocked back anymore (bugreport:2804) [ultramage] 2009/02/25 * Wrong variable being used in StringBuf_Vprintf. (follow up to r13386, fixes bugreport:2798) [FlavioJS] 2009/02/23 diff --git a/src/map/skill.c b/src/map/skill.c index 95783ed5e..f5fb90674 100644 --- a/src/map/skill.c +++ b/src/map/skill.c @@ -1306,6 +1306,8 @@ int skill_blown(struct block_list* src, struct block_list* target, int count, in break; case BL_SKILL: su = (struct skill_unit *)target; + if( su->group->unit_id == UNT_ANKLESNARE ) + return 0; // ankle snare cannot be knocked back break; } |