diff options
author | Attila Molnar <attilamolnar@hush.com> | 2014-04-02 12:50:04 +0200 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2014-04-02 12:50:04 +0200 |
commit | 2465f88a587199a200cdde1a11e0ac7fbd51a0da (patch) | |
tree | 16fe1f66497f61a23f850592a5b31f450aa24e23 /include | |
parent | a6e68c0d346395630dee9dc69211a284360b6c62 (diff) |
Move User::SendAll() into core_privmsg
This functionality is only used by the PRIVMSG and NOTICE handlers
Diffstat (limited to 'include')
-rw-r--r-- | include/users.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/include/users.h b/include/users.h index c90d2f265..ed1abd37f 100644 --- a/include/users.h +++ b/include/users.h @@ -609,16 +609,6 @@ class CoreExport User : public Extensible */ bool ChangeNick(const std::string& newnick, bool force = false, time_t newts = 0); - /** Send a command to all local users from this user - * The command given must be able to send text with the - * first parameter as a servermask (e.g. $*), so basically - * you should use PRIVMSG or NOTICE. - * @param command the command to send - * @param text The text format string to send - * @param ... Format arguments - */ - void SendAll(const char* command, const char* text, ...) CUSTOM_PRINTF(3, 4); - /** Remove this user from all channels they are on, and delete any that are now empty. * This is used by QUIT, and will not send part messages! */ |