]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_spanningtree/precommand.cpp
m_spanningtree Remove unused SpanningTreeUtilities::DoOneToOne() overload accepting...
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / precommand.cpp
index bc78e96abb09fae7cddf226771014e0793b6ab42..4733d00714491ada271834fc9a098b659928d734 100644 (file)
@@ -36,10 +36,6 @@ ModResult ModuleSpanningTree::OnPreCommand(std::string &command, std::vector<std
        {
                return this->HandleSquit(parameters,user);
        }
-       else if (command == "MAP")
-       {
-               return this->HandleMap(parameters,user) ? MOD_RES_DENY : MOD_RES_PASSTHRU;
-       }
        else if (command == "LINKS")
        {
                this->HandleLinks(parameters,user);
@@ -59,4 +55,3 @@ ModResult ModuleSpanningTree::OnPreCommand(std::string &command, std::vector<std
        }
        return MOD_RES_PASSTHRU;
 }
-