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/battleground.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/battleground.c')
-rw-r--r-- | src/map/battleground.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/battleground.c b/src/map/battleground.c index 72ccbeb78..5d88180d5 100644 --- a/src/map/battleground.c +++ b/src/map/battleground.c @@ -222,8 +222,8 @@ int bg_team_get_id(struct block_list *bl) { case BL_PC: return ((struct map_session_data *)bl)->bg_id; case BL_PET: - if( ((TBL_PET*)bl)->msd ) - return ((TBL_PET*)bl)->msd->bg_id; + if (((struct pet_data *)bl)->msd != NULL) + return ((struct pet_data *)bl)->msd->bg_id; break; case BL_MOB: { |