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

Fix AddTemplateHotbar(): loading action spells #194

Merged
merged 6 commits into from
Oct 19, 2024

Conversation

sogladev
Copy link
Contributor

changes

Add actions from db

details

  • SendActionButtons(2) clears all actions. 1 commits it
    0 didn't work. No need to send (2) then (1).
  • SaveToDB() is required to commit actions to db. it calls _saveActions()

test

option need to be enabled in the module config

the data is wrong in DB. I did not apply any optional sql. I only found action related data in the default.
template 1 is disabled, has actions, but no spells
template 2 is enabled, has spells, but has no actions
so, use actions from id 1 and test with 2
UPDATE acore_world.mod_ptrtemplate_action SET id = 2;

level 80 druid (or warrior)

  1. .apply template 2
  2. check if it matches DB actions
  3. relog and see if spells are still there

TODO

fix action data,
for druid bear form spells are set in the wrong form, but they're loaded at least

} while (barInfo->NextRow());
player->SendActionButtons(1);
player->SaveToDB(false, false); // commit action buttons
Copy link
Owner

@heyitsbench heyitsbench Oct 19, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
player->SaveToDB(false, false); // commit action buttons
player->SaveToDB(false, false); // Commit action buttons

Do you happen to know of any reasons this (L577) would have to fail?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@sogladev
Copy link
Contributor Author

will need to retest as SendActionButtons(1) is not send if no entry is found

@sogladev
Copy link
Contributor Author

tested again, should be good now

@heyitsbench heyitsbench merged commit 5687db4 into heyitsbench:master Oct 19, 2024
1 check passed
@heyitsbench
Copy link
Owner

Thank you very much for the PR! ❤️

Good reminder for me to finish adding the data for the level 60 template. 😛

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

Successfully merging this pull request may close these issues.

2 participants