mirror of
https://github.com/Kelsidavis/WoWee.git
synced 2026-03-24 00:00:13 +00:00
feat: implement quest sharing with party via CMSG_PUSHQUESTTOPARTY
This commit is contained in:
parent
e781ede5b2
commit
71b0a18238
4 changed files with 41 additions and 1 deletions
|
|
@ -6833,6 +6833,11 @@ void GameScreen::renderQuestObjectiveTracker(game::GameHandler& gameHandler) {
|
|||
gameHandler.setQuestTracked(q.questId, true);
|
||||
}
|
||||
}
|
||||
if (gameHandler.isInGroup() && !q.complete) {
|
||||
if (ImGui::MenuItem("Share Quest")) {
|
||||
gameHandler.shareQuestWithParty(q.questId);
|
||||
}
|
||||
}
|
||||
if (!q.complete) {
|
||||
ImGui::Separator();
|
||||
if (ImGui::MenuItem("Abandon Quest")) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue