summaryrefslogtreecommitdiff
path: root/src/map/chrif.c
diff options
context:
space:
mode:
authorInkfish <Inkfish@54d463be-8e91-2dee-dedb-b68131a5f0ec>2010-01-15 10:40:18 +0000
committerInkfish <Inkfish@54d463be-8e91-2dee-dedb-b68131a5f0ec>2010-01-15 10:40:18 +0000
commit55c32e60060d55f9c720109ec350942a5a2e0c9d (patch)
tree7a51e90aefc93d145e183ca1eee340e6c181b53b /src/map/chrif.c
parent7d9ed18f509b8929c31f06872d2f148cabe957cb (diff)
downloadhercules-55c32e60060d55f9c720109ec350942a5a2e0c9d.tar.gz
hercules-55c32e60060d55f9c720109ec350942a5a2e0c9d.tar.bz2
hercules-55c32e60060d55f9c720109ec350942a5a2e0c9d.tar.xz
hercules-55c32e60060d55f9c720109ec350942a5a2e0c9d.zip
* Fixed change cart packet doesn't check for skill.
* Added new packets for Plagiarism. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14218 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/chrif.c')
-rw-r--r--src/map/chrif.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/chrif.c b/src/map/chrif.c
index 9b0f7f875..eaedb8a4d 100644
--- a/src/map/chrif.c
+++ b/src/map/chrif.c
@@ -928,7 +928,7 @@ int chrif_deadopt(int father_id, int mother_id, int child_id)
sd->status.skill[WE_CALLBABY].id = 0;
sd->status.skill[WE_CALLBABY].lv = 0;
sd->status.skill[WE_CALLBABY].flag = 0;
- clif_skillinfoblock(sd);
+ clif_deleteskill(sd,WE_CALLBABY);
}
if( mother_id && (sd = map_charid2sd(mother_id)) != NULL && sd->status.child == child_id )
@@ -937,7 +937,7 @@ int chrif_deadopt(int father_id, int mother_id, int child_id)
sd->status.skill[WE_CALLBABY].id = 0;
sd->status.skill[WE_CALLBABY].lv = 0;
sd->status.skill[WE_CALLBABY].flag = 0;
- clif_skillinfoblock(sd);
+ clif_deleteskill(sd,WE_CALLBABY);
}
return 0;