summaryrefslogtreecommitdiff
path: root/src/modules/m_spanningtree/kill.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/m_spanningtree/kill.cpp')
-rw-r--r--src/modules/m_spanningtree/kill.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_spanningtree/kill.cpp b/src/modules/m_spanningtree/kill.cpp
index 93bed9bbe..c70ce27cb 100644
--- a/src/modules/m_spanningtree/kill.cpp
+++ b/src/modules/m_spanningtree/kill.cpp
@@ -28,7 +28,7 @@ bool TreeSocket::RemoteKill(const std::string &prefix, std::deque<std::string> &
if (params.size() != 2)
return true;
- User* who = this->Instance->FindNick(params[0]);
+ User* who = this->ServerInstance->FindNick(params[0]);
if (who)
{
@@ -44,7 +44,7 @@ bool TreeSocket::RemoteKill(const std::string &prefix, std::deque<std::string> &
// NOTE: This is safe with kill hiding on, as RemoteKill is only reached if we have a server prefix.
// in short this is not executed for USERS.
who->Write(":%s KILL %s :%s (%s)", prefix.c_str(), who->nick.c_str(), prefix.c_str(), reason.c_str());
- this->Instance->Users->QuitUser(who, reason);
+ this->ServerInstance->Users->QuitUser(who, reason);
}
return true;
}