diff options
author | ai4rei <ai4rei@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2010-12-02 12:08:44 +0000 |
---|---|---|
committer | ai4rei <ai4rei@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2010-12-02 12:08:44 +0000 |
commit | f5bb1621cc8fb3171fe28a9a7c16219fe120f3bb (patch) | |
tree | 6d6fc31740cf00b975fa62d13260b96b209c316f /src/map/atcommand.c | |
parent | 0939a464fc52731e66d9aaeca816075226f34a1c (diff) | |
download | hercules-f5bb1621cc8fb3171fe28a9a7c16219fe120f3bb.tar.gz hercules-f5bb1621cc8fb3171fe28a9a7c16219fe120f3bb.tar.bz2 hercules-f5bb1621cc8fb3171fe28a9a7c16219fe120f3bb.tar.xz hercules-f5bb1621cc8fb3171fe28a9a7c16219fe120f3bb.zip |
* Removed clif_weather_sub and clif_misceffect2 in favor of clif_specialeffect_single and clif_specialeffect (all of them are ZC_NOTIFY_EFFECT2).
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14541 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/atcommand.c')
-rw-r--r-- | src/map/atcommand.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/atcommand.c b/src/map/atcommand.c index 59849bc8a..347fbbbac 100644 --- a/src/map/atcommand.c +++ b/src/map/atcommand.c @@ -6585,7 +6585,7 @@ ACMD_FUNC(summon) md->master_id=sd->bl.id; md->special_state.ai=1; md->deletetimer=add_timer(tick+(duration*60000),mob_timer_delete,md->bl.id,0); - clif_misceffect2(&md->bl,344); + clif_specialeffect(&md->bl,344,AREA); mob_spawn(md); sc_start4(&md->bl, SC_MODECHANGE, 100, 1, 0, MD_AGGRESSIVE, 0, 60000); clif_skill_poseffect(&sd->bl,AM_CALLHOMUN,1,md->bl.x,md->bl.y,tick); @@ -7124,7 +7124,7 @@ ACMD_FUNC(homlevel) } status_calc_homunculus(hd,0); status_percent_heal(&hd->bl, 100, 100); - clif_misceffect2(&hd->bl,568); + clif_specialeffect(&hd->bl,568,AREA); return 0; } |