From 4c1208b8fadc2dd46b57625421765afcda81f791 Mon Sep 17 00:00:00 2001
From: w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>
Date: Sat, 5 Apr 2008 20:14:28 +0000
Subject: Remove debug, fix DELLINE: args were the wrong way around

git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9365 e03df62e-2008-0410-955e-edbf42e46eb7
---
 src/modules/m_spanningtree/delline.cpp | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/modules/m_spanningtree/delline.cpp b/src/modules/m_spanningtree/delline.cpp
index 13aa684df..1b8630f66 100644
--- a/src/modules/m_spanningtree/delline.cpp
+++ b/src/modules/m_spanningtree/delline.cpp
@@ -26,7 +26,6 @@ bool TreeSocket::DelLine(const std::string &prefix, std::deque<std::string> &par
 	if (params.size() < 2)
 		return true;
 
-	Instance->Logs->Log("loltree", DEBUG, "DELLINE: %s %s", params[0].c_str(), params[1].c_str());
 	std::string setter = "<unknown>";
 
 	User* user = Instance->FindNick(prefix);
@@ -41,7 +40,7 @@ bool TreeSocket::DelLine(const std::string &prefix, std::deque<std::string> &par
 
 
 	/* NOTE: No check needed on 'user', this function safely handles NULL */
-	if (Instance->XLines->DelLine(params[0].c_str(), params[1], user))
+	if (Instance->XLines->DelLine(params[1].c_str(), params[0], user))
 	{
 		this->Instance->SNO->WriteToSnoMask('x',"%s removed %s%s on %s.", setter.c_str(),
 				params[0].c_str(), params[0].length() == 1 ? "LINE" : "", params[1].c_str());
-- 
cgit v1.2.3