diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-08-31 14:18:37 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-08-31 14:18:37 +0000 |
commit | e25963f4562516f4b4aada3983af567f81555165 (patch) | |
tree | bd0eb899cde02ff1dc9ef529e0a1735691eea48d /src/map/atcommand.c | |
parent | 206d92c78af7e58fcf0d322aa54d04ee6318cf8f (diff) | |
download | hercules-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/atcommand.c')
-rw-r--r-- | src/map/atcommand.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/map/atcommand.c b/src/map/atcommand.c index a5478c50e..ebcd78b2a 100644 --- a/src/map/atcommand.c +++ b/src/map/atcommand.c @@ -8594,7 +8594,6 @@ atcommand_summon( {
char name[NAME_LENGTH];
int mob_id = 0;
- int id = 0;
int duration = 0;
struct mob_data *md;
unsigned int tick=gettick();
@@ -8621,7 +8620,7 @@ atcommand_summon( if(md){
md->master_id=sd->bl.id;
md->special_state.ai=1;
- md->deletetimer=add_timer(tick+(duration*60000),mob_timer_delete,id,0);
+ md->deletetimer=add_timer(tick+(duration*60000),mob_timer_delete,md->bl.id,0);
clif_misceffect2(&md->bl,344);
mob_spawn(md);
sc_start4(&md->bl, SC_MODECHANGE, 100, 1, 0, MD_AGGRESSIVE, 0, 60000);
|