-
Notifications
You must be signed in to change notification settings - Fork 7
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
Fix AddTemplateHotbar(): loading action spells #194
Conversation
src/ptr_template.cpp
Outdated
} while (barInfo->NextRow()); | ||
player->SendActionButtons(1); | ||
player->SaveToDB(false, false); // commit action buttons |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it fails if this check fails https://github.com/sogladev/azerothcore-wotlk/blob/7abbca0f5b4ab3a15d78db7ec40e3b4358bed7da/src/server/game/Entities/Player/Player.cpp#L5566
An example I encountered is when the template is trying to add an action spell that is not learned as the entry is not set in spells template
https://github.com/sogladev/azerothcore-wotlk/blob/7abbca0f5b4ab3a15d78db7ec40e3b4358bed7da/src/server/game/Entities/Player/Player.cpp#L5589C13-L5589C35
will need to retest as |
tested again, should be good now |
Thank you very much for the PR! ❤️ Good reminder for me to finish adding the data for the level 60 template. 😛 |
changes
Add actions from db
details
SendActionButtons(2)
clears all actions. 1 commits it0 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)
.apply template 2
TODO
fix action data,
for druid bear form spells are set in the wrong form, but they're loaded at least