diff options
| author | Nay <dnpd.dd@gmail.com> | 2013-03-15 13:42:43 -0700 |
|---|---|---|
| committer | Nay <dnpd.dd@gmail.com> | 2013-03-15 13:42:43 -0700 |
| commit | 3a3f087b0722de3590f3e943b0ff7e0af214a704 (patch) | |
| tree | c3eea736b29a9bfa1160beaa20882c6b249d7bd5 /src/server/game/Entities | |
| parent | b136f01edfa6152018d095889395f0fb16125e29 (diff) | |
| parent | 46ba2d945a9da4af1fe13d2da1a593a1fe2a4f20 (diff) | |
Merge pull request #9396 from thomas007788/Whispers
Allow reply to whispers if you are under CONFIG_CHAT_WHISPER_LEVEL_REQ
Diffstat (limited to 'src/server/game/Entities')
| -rw-r--r-- | src/server/game/Entities/Player/Player.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/server/game/Entities/Player/Player.h b/src/server/game/Entities/Player/Player.h index a95c81fb6bc..bf38eba9d4c 100644 --- a/src/server/game/Entities/Player/Player.h +++ b/src/server/game/Entities/Player/Player.h @@ -2272,6 +2272,7 @@ class Player : public Unit, public GridObject<Player> void ClearWhisperWhiteList() { WhisperList.clear(); } void AddWhisperWhiteList(uint64 guid) { WhisperList.push_back(guid); } bool IsInWhisperWhiteList(uint64 guid); + void RemoveFromWhisperWhiteList(uint64 guid) { WhisperList.remove(guid); } /*! These methods send different packets to the client in apply and unapply case. These methods are only sent to the current unit. |
