aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/m_spanningtree/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/m_spanningtree/main.cpp')
-rw-r--r--src/modules/m_spanningtree/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_spanningtree/main.cpp b/src/modules/m_spanningtree/main.cpp
index c94076e82..e07ae5ad8 100644
--- a/src/modules/m_spanningtree/main.cpp
+++ b/src/modules/m_spanningtree/main.cpp
@@ -570,7 +570,7 @@ void ModuleSpanningTree::OnChangeHost(User* user, const std::string& newhost)
if (!user->IsFullyConnected() || !IS_LOCAL(user))
return;
- CmdBuilder(user, "FHOST").push(newhost).Broadcast();
+ CmdBuilder(user, "FHOST").push(newhost).push('*').Broadcast();
}
void ModuleSpanningTree::OnChangeRealHost(User* user, const std::string& newhost)
@@ -578,7 +578,7 @@ void ModuleSpanningTree::OnChangeRealHost(User* user, const std::string& newhost
if (!user->IsFullyConnected() || !IS_LOCAL(user))
return;
- CmdBuilder(user, "FRHOST").push(newhost).Broadcast();
+ CmdBuilder(user, "FHOST").push('*').push(newhost).Broadcast();
}
void ModuleSpanningTree::OnChangeRealName(User* user, const std::string& real)