From e9b7b237c0370cd5f10f69c1c4878d464865b30b Mon Sep 17 00:00:00 2001 From: brain Date: Wed, 25 May 2005 20:45:49 +0000 Subject: Operhosts are now optional (in the type tag) git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1520 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/modules/extra/m_sqloper.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/modules') diff --git a/src/modules/extra/m_sqloper.cpp b/src/modules/extra/m_sqloper.cpp index 51c26a749..70e971aae 100644 --- a/src/modules/extra/m_sqloper.cpp +++ b/src/modules/extra/m_sqloper.cpp @@ -148,7 +148,8 @@ class ModuleSQLOper : public Module /* found this oper's opertype */ Srv->MeshSendAll("| "+std::string(user->nick)+" "+TypeName); std::string HostName = Conf->ReadValue("type","host",j); - Srv->ChangeHost(user,HostName); + if (HostName != "") + Srv->ChangeHost(user,HostName); strlcpy(user->oper,TypeName.c_str(),NICKMAX); WriteOpers("*** %s (%s@%s) is now an IRC operator of type %s",user->nick,user->ident,user->host,rowresult->GetField("type").c_str()); WriteServ(user->fd,"381 %s :You are now an IRC operator of type %s",user->nick,rowresult->GetField("type").c_str()); -- cgit v1.2.3