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/uid.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/uid.cpp')
| -rw-r--r-- | src/modules/m_spanningtree/uid.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_spanningtree/uid.cpp b/src/modules/m_spanningtree/uid.cpp index 24477acc8..e5e534d8c 100644 --- a/src/modules/m_spanningtree/uid.cpp +++ b/src/modules/m_spanningtree/uid.cpp @@ -59,7 +59,7 @@ CmdResult CommandUID::HandleServer(TreeServer* remoteserver, CommandBase::Params else if (collideswith) { // The user on this side is fully connected, handle the collision - bool they_change = Utils->DoCollision(collideswith, remoteserver, nickchanged, params[5], params[6], params[0], "UID"); + bool they_change = SpanningTreeUtilities::DoCollision(collideswith, remoteserver, nickchanged, params[5], params[6], params[0], "UID"); if (they_change) { // The client being introduced needs to change nick to uuid, change the nick in the message before |
