git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@14220 54d463be-8e91-2dee-dedb-b68131a5f0ec
@@ -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.
+2010/01/19
+ * Snatch should warp you anyway even if the target died. [Inkfish]
2010/01/16
* Fixed items don't grant skill if you had this skill before and then changed your job. [Inkfish]
2010/01/14
@@ -2313,7 +2313,7 @@ static int skill_timerskill(int tid, unsigned int tick, int id, intptr data)
break;
if(skl->target_id) {
target = map_id2bl(skl->target_id);
- if(!target && skl->skill_id == RG_INTIMIDATE)
+ if( skl->skill_id == RG_INTIMIDATE && (!target || target->prev == NULL) )
target = src; //Required since it has to warp.
if(target == NULL)