Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Some fixes for compilation errors #38

Open
bWolfie opened this issue Feb 5, 2018 · 2 comments
Open

Some fixes for compilation errors #38

bWolfie opened this issue Feb 5, 2018 · 2 comments

Comments

@bWolfie
Copy link

bWolfie commented Feb 5, 2018

I will list some stuff which gives compilation errors.

  1. status_get_guild_id_pre
    Change this line
    && (bg_id = bg->team_get_id((struct block_list *)*bl)) > 0
    to
    && (bg_id = bg->team_get_id((struct block_list *)bl)) > 0

  2. status_get_emblem_id_pre
    Change this line
    && (bg_id = bg->team_get_id((struct block_list *)(*bl))) > 0
    to
    && (bg_id = bg->team_get_id((struct block_list *)bl)) > 0

  3. In ACMD(reportafk) and ACMD(leader) there are unused definitions:
    struct hBG_map_session_data *hBGsd = NULL;

@shadow-mo0n
Copy link

shadow-mo0n commented Feb 11, 2018

When I apply this fix, the emblem problem here #39 occurs.

@bWolfie
Copy link
Author

bWolfie commented Feb 11, 2018

I see! Thanks. I'll check it out.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants