summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorL0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec>2008-09-21 13:03:29 +0000
committerL0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec>2008-09-21 13:03:29 +0000
commit0f3b72dbe3014cefdc6398a54e3cef2a767859c6 (patch)
treeee63e5391d10326692784ca4facc8418abcc9350
parente38e61abcc82422874ba40da5a2000c1625763be (diff)
downloadhercules-0f3b72dbe3014cefdc6398a54e3cef2a767859c6.tar.gz
hercules-0f3b72dbe3014cefdc6398a54e3cef2a767859c6.tar.bz2
hercules-0f3b72dbe3014cefdc6398a54e3cef2a767859c6.tar.xz
hercules-0f3b72dbe3014cefdc6398a54e3cef2a767859c6.zip
Corrected Offensive Res using Turn Undead cast time. (bugreport:1704)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13225 54d463be-8e91-2dee-dedb-b68131a5f0ec
-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;