summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorPeter Powell <petpow@saberuk.com>2019-01-02 17:31:31 +0000
committerPeter Powell <petpow@saberuk.com>2019-01-02 20:28:46 +0000
commitaafc03bdfc34c9426df44938403c92dbbbc0568e (patch)
tree9213bee0804ad12bfdb75972597a4fce0420b63f /include
parent93390f6ccbeeb5198217ef31a205c57e51d2dc18 (diff)
Fix message tags not being broadcast across the network.
Diffstat (limited to 'include')
-rw-r--r--include/clientprotocol.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clientprotocol.h b/include/clientprotocol.h
index 260e463eb..10b70e80b 100644
--- a/include/clientprotocol.h
+++ b/include/clientprotocol.h
@@ -549,7 +549,7 @@ class ClientProtocol::MessageTagProvider : public Events::ModuleEventListener
* MOD_RES_PASSTHRU to make no decision. If no hooks accept a tag, the tag is rejected.
* The default implementation returns MOD_RES_PASSTHRU.
*/
- virtual ModResult OnClientProtocolProcessTag(LocalUser* user, const std::string& tagname, std::string& tagvalue)
+ virtual ModResult OnClientProtocolProcessTag(User* user, const std::string& tagname, std::string& tagvalue)
{
return MOD_RES_PASSTHRU;
}