diff options
-rw-r--r-- | Changelog-Trunk.txt | 3 | ||||
-rw-r--r-- | src/map/status.c | 3 | ||||
-rw-r--r-- | src/map/unit.c | 1 |
3 files changed, 4 insertions, 3 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt index 6722a8dc8..bd6742aba 100644 --- a/Changelog-Trunk.txt +++ b/Changelog-Trunk.txt @@ -3,6 +3,9 @@ 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. +2008/10/01 + * Rev. 13251 Removed 'casttime' adjustment from offensive ressurection. Follow up to r13225. [L0ne_W0lf] + * Kaahi will now override override higher existing levels previously casted. (bugreport:2296) 2008/09/27 * Fixed clif_changelook betraying the presence of gm-hidden players (bugreport:2283) [ultramage] 2008/09/11 diff --git a/src/map/status.c b/src/map/status.c index b1fd9df34..b862137f3 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -5134,8 +5134,7 @@ int status_change_start(struct block_list* bl,enum sc_type type,int rate,int val return 1; break; case SC_KAAHI: - if(sce->val1 > val1) - return 1; + //Kaahi overwrites previous level regardless of existing level. //Delete timer if it exists. if (sce->val4 != -1) { delete_timer(sce->val4,kaahi_heal_timer); diff --git a/src/map/unit.c b/src/map/unit.c index bb1a02514..3049f0457 100644 --- a/src/map/unit.c +++ b/src/map/unit.c @@ -987,7 +987,6 @@ int unit_skilluse_id2(struct block_list *src, int target_id, short skill_num, sh case ALL_RESURRECTION: if(battle_check_undead(tstatus->race,tstatus->def_ele)) { temp = 1; - casttime = skill_castfix(src, ALL_RESURRECTION, skill_lv); } else if (!status_isdead(target)) return 0; //Can't cast on non-dead characters. break; |