mirror of
https://github.com/Kelsidavis/WoWee.git
synced 2026-04-17 09:33:51 +00:00
Show AFK/DND status badge on player frame
Adds a yellow <AFK> or orange <DND> label next to the player name when those modes are active, with a tooltip explaining how to cancel.
This commit is contained in:
parent
fe61d6acce
commit
c433188edb
2 changed files with 11 additions and 0 deletions
|
|
@ -447,6 +447,8 @@ public:
|
|||
// AFK/DND status
|
||||
void toggleAfk(const std::string& message = "");
|
||||
void toggleDnd(const std::string& message = "");
|
||||
bool isAfk() const { return afkStatus_; }
|
||||
bool isDnd() const { return dndStatus_; }
|
||||
void replyToLastWhisper(const std::string& message);
|
||||
std::string getLastWhisperSender() const { return lastWhisperSender_; }
|
||||
void setLastWhisperSender(const std::string& name) { lastWhisperSender_ = name; }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue