[Command] Send talents info data after glyph changed

This commit is contained in:
Yunfan Li 2024-07-21 22:23:03 +08:00
parent 400f982101
commit 00e24b2681

View File

@ -172,6 +172,7 @@ bool MaintenanceAction::Execute(Event event)
factory.ApplyEnchantAndGemsNew(); factory.ApplyEnchantAndGemsNew();
} }
bot->DurabilityRepairAll(false, 1.0f, false); bot->DurabilityRepairAll(false, 1.0f, false);
bot->SendTalentsInfoData(false);
return true; return true;
} }
@ -181,6 +182,7 @@ bool RemoveGlyphAction::Execute(Event event)
{ {
bot->SetGlyph(slotIndex, 0, true); bot->SetGlyph(slotIndex, 0, true);
} }
bot->SendTalentsInfoData(false);
return true; return true;
} }