Skip to content

Commit 5687db4

Browse files
authored
Fix AddTemplateHotbar(): loading action spells
1 parent ba6d4e7 commit 5687db4

File tree

2 files changed

+18
-14
lines changed

2 files changed

+18
-14
lines changed

conf/mod_ptr_template.conf.dist

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ LevelEnable = true
3030
# TemplateDK
3131
# TemplateEquipGear
3232
# TemplateHomebind
33-
# TemplateHotbar - false
33+
# TemplateHotbar
3434
# TemplateLevel
3535
# TemplateQuests - false
3636
# TemplateReputation
@@ -48,7 +48,7 @@ TemplateBagGear = true
4848
TemplateDK = true
4949
TemplateEquipGear = true
5050
TemplateHomebind = true
51-
TemplateHotbar = false
51+
TemplateHotbar = true
5252
TemplateLevel = true
5353
TemplateQuests = false
5454
TemplateReputation = true

src/ptr_template.cpp

+16-12
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ class createTemplate : public PlayerScript {
5454
{
5555
itemRoutine = METHOD_DELETE;
5656
}
57-
57+
5858
scheduler.Schedule(Milliseconds(delayMultiplier * APPLY_DELAY), [player, index, itemRoutine](TaskContext context)
5959
{
6060
switch (context.GetRepeatCounter())
@@ -467,7 +467,7 @@ class createTemplate : public PlayerScript {
467467
{
468468
return;
469469
}
470-
470+
471471
int STARTER_QUESTS[33] = { 12593, 12619, 12842, 12848, 12636, 12641, 12657, 12678, 12679, 12680, 12687, 12698, 12701, 12706, 12716, 12719, 12720, 12722, 12724, 12725, 12727, 12733, -1, 12751, 12754, 12755, 12756, 12757, 12779, 12801, 13165, 13166 };
472472
// Blizz just dumped all of the special surprise quests on every DK template. Don't know yet if I want to do the same.
473473
int specialSurpriseQuestId = -1;
@@ -560,25 +560,29 @@ class createTemplate : public PlayerScript {
560560
}
561561
}
562562

563-
static void AddTemplateHotbar(Player* player, uint32 index) // Someone smarter than me needs to fix this.
564-
{ // 0 1 2
563+
static void AddTemplateHotbar(Player* player, uint32 index)
564+
{
565+
for (uint8 j = ACTION_BUTTON_BEGIN; j <= MAX_ACTION_BUTTONS; j++)
566+
{
567+
player->removeActionButton(j);
568+
}
569+
// 0 1 2
565570
QueryResult barInfo = WorldDatabase.Query("SELECT Button, Action, Type FROM mod_ptrtemplate_action WHERE (ID = {} AND RaceMask & {} AND ClassMask & {})", index, player->getRaceMask(), player->getClassMask());
566-
for (uint8 j = ACTION_BUTTON_BEGIN; j <= MAX_ACTION_BUTTONS; j++) // This is supposed to go through every available action slot and remove what's there.
567-
{ // This doesn't work for spells added by AddTemplateSpells.
568-
player->removeActionButton(j); // I don't know why and I've tried everything I can think of, but nothing's worked.
569-
} // And yes, I do want the hotbar cleared for characters that don't have any hotbar data in the template.
570571
if (barInfo)
571572
{
572573
do
573574
{
574575
uint8 buttonEntry = (*barInfo)[0].Get<uint8>();
575576
uint32 actionEntry = (*barInfo)[1].Get<uint32>();
576577
uint8 typeEntry = (*barInfo)[2].Get<uint8>();
577-
player->addActionButton(buttonEntry, actionEntry, typeEntry);
578-
LOG_DEBUG("module", "Added hotbar spell {} on button {} with type {} for template character {}.", actionEntry, buttonEntry, typeEntry, player->GetGUID().ToString());
578+
if (player->addActionButton(buttonEntry, actionEntry, typeEntry))
579+
LOG_DEBUG("module", "Added hotbar spell {} on button {} with type {} for template character {}.", actionEntry, buttonEntry, typeEntry, player->GetGUID().ToString());
580+
else
581+
LOG_ERROR("module", "Failed to add hotbar spell {} on button {} with type {} for template character {}.", actionEntry, buttonEntry, typeEntry, player->GetGUID().ToString());
579582
} while (barInfo->NextRow());
580583
}
581-
player->SendActionButtons(2);
584+
player->SaveToDB(false, false); // Commit action buttons.
585+
player->SendActionButtons(1);
582586
}
583587

584588
static void AddTemplateLevel(Player* player, uint32 index)
@@ -868,7 +872,7 @@ class createTemplate : public PlayerScript {
868872
item->DeleteFromInventoryDB(trans);
869873
vestigialEquipItems.push_back(item);
870874
}
871-
875+
872876
while (!vestigialEquipItems.empty())
873877
{
874878
std::string subject = player->GetSession()->GetModuleString(module_string, MAIL_BOOST_SUBJECT)[0];

0 commit comments

Comments
 (0)