summaryrefslogtreecommitdiff
path: root/src/map/mob.c
diff options
context:
space:
mode:
authorskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-03-15 18:33:32 +0000
committerskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-03-15 18:33:32 +0000
commit1197558778704f21e962aaadcae6c8d09dc7f9b5 (patch)
treef9200e3f1aff52c4c6cf20f2765658e699033e5d /src/map/mob.c
parent9f49994f8740db8b4c1a4b34f0c79ab95a4f6049 (diff)
downloadhercules-1197558778704f21e962aaadcae6c8d09dc7f9b5.tar.gz
hercules-1197558778704f21e962aaadcae6c8d09dc7f9b5.tar.bz2
hercules-1197558778704f21e962aaadcae6c8d09dc7f9b5.tar.xz
hercules-1197558778704f21e962aaadcae6c8d09dc7f9b5.zip
- Removed the hardcoded duration of 30seconds for sleep.
- Fixed rangecheck for pet skill usage of INF_SELF_SKILL - Removed inall/exall from atcommand.conf since those two do not exist! (pointed out by Ancyker) - @me now uses entry 270 in msg_athena as output format. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@5615 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/mob.c')
-rw-r--r--src/map/mob.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/mob.c b/src/map/mob.c
index 911841cb1..822eb61d9 100644
--- a/src/map/mob.c
+++ b/src/map/mob.c
@@ -3513,7 +3513,7 @@ int mobskill_use_id(struct mob_data *md,struct block_list *target,int skill_idx)
switch(skill_id){ /* 何か特殊な処理が必要 */
case ALL_RESURRECTION: /* リザレクション */
- if(target->type != BL_PC && battle_check_undead(status_get_race(target),status_get_elem_type(target))){ /* 敵がアンデッドなら */
+ if(battle_check_undead(status_get_race(target),status_get_elem_type(target))){ /* 敵がアンデッドなら */
forcecast=1; /* ターンアンデットと同じ詠唱時間 */
casttime=skill_castfix(&md->bl, PR_TURNUNDEAD,skill_lv, 0);
}