summaryrefslogtreecommitdiff
path: root/src/map/script.c
diff options
context:
space:
mode:
authorChuck Miller <shadowmil@gmail.com>2009-05-13 17:14:05 -0400
committerJared Adams <jaxad0127@gmail.com>2009-05-13 15:19:45 -0600
commitabb8b0a2cd5577cce954f638dca5fa3f371391fb (patch)
treeabe614224b7cc563bd1febb9e02a416016873b16 /src/map/script.c
parenta60768f84c1e4fcf321208b39443fe01254f376c (diff)
downloadtmwa-abb8b0a2cd5577cce954f638dca5fa3f371391fb.tar.gz
tmwa-abb8b0a2cd5577cce954f638dca5fa3f371391fb.tar.bz2
tmwa-abb8b0a2cd5577cce954f638dca5fa3f371391fb.tar.xz
tmwa-abb8b0a2cd5577cce954f638dca5fa3f371391fb.zip
Cleans up the net code for effects
Removes the 0x1f3 packet since its the same as 0x19b packet, and our client doesn't handle 0x1f3.
Diffstat (limited to 'src/map/script.c')
-rw-r--r--src/map/script.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/script.c b/src/map/script.c
index d731b3f..5c3528e 100644
--- a/src/map/script.c
+++ b/src/map/script.c
@@ -5523,11 +5523,11 @@ int buildin_misceffect(struct script_state *st)
type=conv_num(st,& (st->stack->stack_data[st->start+2]));
if(st->oid)
- clif_misceffect2(map_id2bl(st->oid),type);
+ clif_misceffect(map_id2bl(st->oid),type);
else{
struct map_session_data *sd=script_rid2sd(st);
if(sd)
- clif_misceffect2(&sd->bl,type);
+ clif_misceffect(&sd->bl,type);
}
return 0;
}