diff options
| author | 2014-07-27 18:45:52 +0200 | |
|---|---|---|
| committer | 2014-07-27 18:45:52 +0200 | |
| commit | 6720b8a7cd0975e9939781ca020e79de5ea46cc7 (patch) | |
| tree | 79bb135cf7c40332c2ac81366132758d3b9c25cd /src/modules/m_spanningtree/pong.cpp | |
| parent | m_spanningtree Remove post-handshake BURST handler (diff) | |
m_spanningtree Replace direct access of TreeServer::bursting with IsBursting()
Diffstat (limited to 'src/modules/m_spanningtree/pong.cpp')
| -rw-r--r-- | src/modules/m_spanningtree/pong.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_spanningtree/pong.cpp b/src/modules/m_spanningtree/pong.cpp index 6a29163e4..a7dc64f83 100644 --- a/src/modules/m_spanningtree/pong.cpp +++ b/src/modules/m_spanningtree/pong.cpp @@ -26,7 +26,7 @@ CmdResult CommandPong::HandleServer(TreeServer* server, std::vector<std::string>& params) { - if (server->bursting) + if (server->IsBursting()) { ServerInstance->SNO->WriteGlobalSno('l', "Server \002%s\002 has not finished burst, forcing end of burst (send ENDBURST!)", server->GetName().c_str()); server->FinishBurst(); |
