summaryrefslogtreecommitdiff
path: root/src/map/mob.c
diff options
context:
space:
mode:
authorskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-08-31 14:18:37 +0000
committerskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-08-31 14:18:37 +0000
commite25963f4562516f4b4aada3983af567f81555165 (patch)
treebd0eb899cde02ff1dc9ef529e0a1735691eea48d /src/map/mob.c
parent206d92c78af7e58fcf0d322aa54d04ee6318cf8f (diff)
downloadhercules-e25963f4562516f4b4aada3983af567f81555165.tar.gz
hercules-e25963f4562516f4b4aada3983af567f81555165.tar.bz2
hercules-e25963f4562516f4b4aada3983af567f81555165.tar.xz
hercules-e25963f4562516f4b4aada3983af567f81555165.zip
- Fixed @summon's delete timer being screwed up.
- Cleaned up a bit the summon script command. - Fixed the clone script command's delete-timer being screwed up. - Corrected battle config name max_walk_rate, it should be named max_walk_speed. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@8559 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 d217dcf69..73200bd27 100644
--- a/src/map/mob.c
+++ b/src/map/mob.c
@@ -2997,7 +2997,7 @@ int mob_clone_spawn(struct map_session_data *sd, int m, int x, int y, const char
if (master_id) //Attach to Master
md->master_id = master_id;
if (duration) //Auto Delete after a while.
- md->deletetimer = add_timer (gettick() + duration, mob_timer_delete, i, 0);
+ md->deletetimer = add_timer (gettick() + duration, mob_timer_delete, md->bl.id, 0);
}
#if 0
//I am playing with this for packet-research purposes, enable it if you want, but don't remove it :X [Skotlex]