diff options
author | hemagx <hemagx2@gmail.com> | 2015-12-26 11:17:14 +0200 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2016-01-06 15:09:55 +0100 |
commit | 829ebdd1527a7a4a585056463f8871d926698e2d (patch) | |
tree | db7a21cf1f33a05896793f9500580b969ca914ba /src/map/pc.c | |
parent | b040c619b505fd7423576f88bb0fe7de35848d3d (diff) | |
download | hercules-829ebdd1527a7a4a585056463f8871d926698e2d.tar.gz hercules-829ebdd1527a7a4a585056463f8871d926698e2d.tar.bz2 hercules-829ebdd1527a7a4a585056463f8871d926698e2d.tar.xz hercules-829ebdd1527a7a4a585056463f8871d926698e2d.zip |
Change all TBL_PET to struct pet_data as per style guidelines
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/map/pc.c')
-rw-r--r-- | src/map/pc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/pc.c b/src/map/pc.c index 8c794922b..3c93be7df 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -7623,7 +7623,7 @@ int pc_dead(struct map_session_data *sd,struct block_list *src) { } break; case BL_PET: //Pass on to master... - src = &((TBL_PET*)src)->msd->bl; + src = &((struct pet_data *)src)->msd->bl; break; case BL_HOM: src = &((struct homun_data *)src)->master->bl; |