diff options
| author | 2023-02-03 09:26:31 +0000 | |
|---|---|---|
| committer | 2023-02-03 09:26:31 +0000 | |
| commit | e64ace4c8279084a7d168ee1f9e50156b93fa2c7 (patch) | |
| tree | 4630a6b5295c549e4974ced5a651febaf0ce2481 /src/modules/m_ircv3.cpp | |
| parent | Allow bouncers to introduce a user as away. (diff) | |
| download | inspircd++-e64ace4c8279084a7d168ee1f9e50156b93fa2c7.tar.gz inspircd++-e64ace4c8279084a7d168ee1f9e50156b93fa2c7.tar.bz2 inspircd++-e64ace4c8279084a7d168ee1f9e50156b93fa2c7.zip | |
Expose the removed away message in OnUserBack.
Diffstat (limited to 'src/modules/m_ircv3.cpp')
| -rw-r--r-- | src/modules/m_ircv3.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_ircv3.cpp b/src/modules/m_ircv3.cpp index e5c7908fe..dddb24140 100644 --- a/src/modules/m_ircv3.cpp +++ b/src/modules/m_ircv3.cpp @@ -175,7 +175,7 @@ public: Monitor::WriteWatchersWithCap(monitorapi, user, awayevent, joinhook.awaycap, res.GetAlreadySentId()); } - void OnUserBack(User* user) override + void OnUserBack(User* user, const std::string& message) override { // Back from away: n!u@h AWAY OnUserAway(user); |
