aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_spanningtree/misccommands.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2019-02-07 12:17:09 +0000
committerGravatar Sadie Powell2019-02-07 12:17:09 +0000
commit8e908f0a6864eab4cf37997773603e9943bb7892 (patch)
treee4be6165b608bdfa35cbce88f447d94d9b498974 /src/modules/m_spanningtree/misccommands.cpp
parentModuleManager: remove fakederef. (diff)
SnomaskManager: remove fakederef.
Diffstat (limited to 'src/modules/m_spanningtree/misccommands.cpp')
-rw-r--r--src/modules/m_spanningtree/misccommands.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_spanningtree/misccommands.cpp b/src/modules/m_spanningtree/misccommands.cpp
index 8fc1b178f..827ea2562 100644
--- a/src/modules/m_spanningtree/misccommands.cpp
+++ b/src/modules/m_spanningtree/misccommands.cpp
@@ -31,7 +31,7 @@
CmdResult CommandSNONotice::Handle(User* user, Params& params)
{
- ServerInstance->SNO->WriteToSnoMask(params[0][0], "From " + user->nick + ": " + params[1]);
+ ServerInstance->SNO.WriteToSnoMask(params[0][0], "From " + user->nick + ": " + params[1]);
return CMD_SUCCESS;
}