Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/game/WorldHandlers/Group.h
Original file line number Diff line number Diff line change
Expand Up @@ -1063,8 +1063,10 @@ class Group
}
}

// context defaults to 0 (a normal target-icon set) so pre-MoP 3-argument callers --
// notably Eluna's shared Group:SetTargetIcon binding -- stay source-compatible.
void SetTargetIcon(uint8 id, ObjectGuid whoGuid, ObjectGuid targetGuid,
uint8 context);
uint8 context = 0);

Difficulty GetDifficulty(bool isRaid) const { return isRaid ? m_raidDifficulty : m_dungeonDifficulty; }
Difficulty GetDungeonDifficulty() const { return m_dungeonDifficulty; }
Expand Down