summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2007-08-27 02:41:09 +0000
committerw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2007-08-27 02:41:09 +0000
commita2456eeec150d3907a1d9b3e7da4f177c3e1b5d3 (patch)
treeec4d86d8633d38160dbaca701f45769bc911691d
parentdc62c529ff4a3e9e876857d3eb357d2a5fa313aa (diff)
Send UID prefix on module commands across links.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7859 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r--src/modules/m_spanningtree/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_spanningtree/main.cpp b/src/modules/m_spanningtree/main.cpp
index 5613251b0..5c00a47c7 100644
--- a/src/modules/m_spanningtree/main.cpp
+++ b/src/modules/m_spanningtree/main.cpp
@@ -821,7 +821,7 @@ void ModuleSpanningTree::OnPostCommand(const std::string &command, const char**
params.push_back(std::string(parameters[j]));
}
}
- Utils->DoOneToMany(user->nick,command,params);
+ Utils->DoOneToMany(user->uuid, command, params);
}
}