diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-03-25 00:05:47 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-03-25 00:05:47 +0000 |
commit | 133aa062bf0e7629f9260165fe5004a1f1cae690 (patch) | |
tree | a990e7d83519144a40d5d1d3c82f8397c634472f /src/map/pet.c | |
parent | ec3f633cdaa6b4b0661400d2bada620f58987916 (diff) | |
download | hercules-133aa062bf0e7629f9260165fe5004a1f1cae690.tar.gz hercules-133aa062bf0e7629f9260165fe5004a1f1cae690.tar.bz2 hercules-133aa062bf0e7629f9260165fe5004a1f1cae690.tar.xz hercules-133aa062bf0e7629f9260165fe5004a1f1cae690.zip |
- Small change that SHOULD fix the pet duplication. Fixing pet incubator still isn't done...
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@5741 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/pet.c')
-rw-r--r-- | src/map/pet.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/map/pet.c b/src/map/pet.c index 67049d271..67d457e55 100644 --- a/src/map/pet.c +++ b/src/map/pet.c @@ -379,6 +379,7 @@ int pet_return_egg(struct map_session_data *sd) if(battle_config.pet_status_support && sd->pet.intimate > 0)
status_calc_pc(sd,0);
memset(&sd->pet, 0, sizeof(struct s_pet));
+ sd->status.pet_id = 0;
sd->pet.incuvate = 1;
sd->petDB = NULL;
}
@@ -512,6 +513,8 @@ int pet_recv_petdata(int account_id,struct s_pet *p,int flag) if (battle_config.error_log)
ShowError("pet_recv_petdata: Hatching pet (%d:%s) aborted, couldn't find egg in inventory for removal!\n",p->pet_id, p->name);
sd->status.pet_id = 0;
+ memset(&sd->pet,0,sizeof(struct s_pet));
+ sd->pet.incuvate = 1;
return 1;
}
if (!pet_birth_process(sd)) //Pet hatched. Delete egg.
|