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 | b040c619b505fd7423576f88bb0fe7de35848d3d (patch) | |
tree | d2f8b6178cc9e5a6e3f9c02b0f91f7b4dd120fc7 /src/map/battleground.c | |
parent | 00c95f652e5a2c572b9f210507e346af031c6f96 (diff) | |
download | hercules-b040c619b505fd7423576f88bb0fe7de35848d3d.tar.gz hercules-b040c619b505fd7423576f88bb0fe7de35848d3d.tar.bz2 hercules-b040c619b505fd7423576f88bb0fe7de35848d3d.tar.xz hercules-b040c619b505fd7423576f88bb0fe7de35848d3d.zip |
Change all TBL_SKILL to struct skill_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 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/battleground.c b/src/map/battleground.c index e740a3370..72ccbeb78 100644 --- a/src/map/battleground.c +++ b/src/map/battleground.c @@ -242,7 +242,7 @@ int bg_team_get_id(struct block_list *bl) { return ((struct mercenary_data *)bl)->master->bg_id; break; case BL_SKILL: - return ((TBL_SKILL*)bl)->group->bg_id; + return ((struct skill_unit *)bl)->group->bg_id; } return 0; |