summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Changelog-Trunk.txt2
-rw-r--r--src/map/unit.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt
index 6baf24977..70c7ec257 100644
--- a/Changelog-Trunk.txt
+++ b/Changelog-Trunk.txt
@@ -4,6 +4,8 @@ AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO
IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK.
2008/09/11
+ * Rev. 13225 Corrected Offensive Res using Turn Undead cast time. (bugreport:1704) [L0ne_W0lf]
+2008/09/11
* Rev. 13204 Made the mail check on login read from msg_athena.conf. [L0ne_W0lf]
2008/09/09
* Rev. 13202 Added commands related to WoE SE, allowing it to run independantly of WoE. [L0ne_W0lf]
diff --git a/src/map/unit.c b/src/map/unit.c
index daa96819f..bb1a02514 100644
--- a/src/map/unit.c
+++ b/src/map/unit.c
@@ -987,7 +987,7 @@ 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, PR_TURNUNDEAD, skill_lv);
+ casttime = skill_castfix(src, ALL_RESURRECTION, skill_lv);
} else if (!status_isdead(target))
return 0; //Can't cast on non-dead characters.
break;