diff options
| author | 2023-01-11 00:37:09 +0000 | |
|---|---|---|
| committer | 2023-01-11 00:56:10 +0000 | |
| commit | b7b72521a7066f7694fdcc78702936fae4b11894 (patch) | |
| tree | 2ecc424d56526cb8e8cd0e846a285c53628ae385 /src/modules/m_spanningtree/nick.cpp | |
| parent | Qualify auto correctly in all cases. (diff) | |
Fix calling various static functions through a type instance.
Diffstat (limited to 'src/modules/m_spanningtree/nick.cpp')
| -rw-r--r-- | src/modules/m_spanningtree/nick.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_spanningtree/nick.cpp b/src/modules/m_spanningtree/nick.cpp index ae021d0ab..a4c5cb120 100644 --- a/src/modules/m_spanningtree/nick.cpp +++ b/src/modules/m_spanningtree/nick.cpp @@ -42,7 +42,7 @@ CmdResult CommandNick::HandleRemote(::RemoteUser* user, Params& params) { // 'x' is the already existing user using the same nick as params[0] // 'user' is the user trying to change nick to the in use nick - bool they_change = Utils->DoCollision(x, TreeServer::Get(user), newts, user->ident, user->GetIPString(), user->uuid, "NICK"); + bool they_change = SpanningTreeUtilities::DoCollision(x, TreeServer::Get(user), newts, user->ident, user->GetIPString(), user->uuid, "NICK"); if (they_change) { // Remote client lost, or both lost, rewrite this nick change as a change to uuid before |
