summaryrefslogtreecommitdiff
path: root/src/map/chrif.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/map/chrif.c')
-rw-r--r--src/map/chrif.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/map/chrif.c b/src/map/chrif.c
index 96abe107c..4ae98408e 100644
--- a/src/map/chrif.c
+++ b/src/map/chrif.c
@@ -903,21 +903,20 @@ int chrif_divorce(int char_id, int partner_id)
int chrif_deadopt(int father_id, int mother_id, int child_id)
{
struct map_session_data* sd;
- int i;
if( father_id && (sd = map_charid2sd(father_id)) != NULL && sd->status.child == child_id )
{
sd->status.child = 0;
- sd->status.skill[WE_CALLBABY].lv = 0;
- sd->status.skill[WE_CALLBABY].flag = 0;
+ sd->status.skill[410].lv = 0;
+ sd->status.skill[410].flag = 0;
clif_skillinfoblock(sd);
}
if( mother_id && (sd = map_charid2sd(mother_id)) != NULL && sd->status.child == child_id )
{
sd->status.child = 0;
- sd->status.skill[WE_CALLBABY].lv = 0;
- sd->status.skill[WE_CALLBABY].flag = 0;
+ sd->status.skill[410].lv = 0;
+ sd->status.skill[410].flag = 0;
clif_skillinfoblock(sd);
}