summaryrefslogtreecommitdiff
path: root/src/commands/cmd_map.cpp
diff options
context:
space:
mode:
authordanieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7>2009-09-17 23:50:43 +0000
committerdanieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7>2009-09-17 23:50:43 +0000
commit682808a251c56edc2f3fb6fff490f051e360f8bb (patch)
tree51d0fb5b6dae52ee33ec561c368eb0364245a5b3 /src/commands/cmd_map.cpp
parent47c4da37d6b9c7f443ad871771558e01ffec791a (diff)
Remove SID from /map for non-opers, and add it to non-spanningtree for opers [dKingston]
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11745 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/commands/cmd_map.cpp')
-rw-r--r--src/commands/cmd_map.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/commands/cmd_map.cpp b/src/commands/cmd_map.cpp
index edc8aa124..b6846954a 100644
--- a/src/commands/cmd_map.cpp
+++ b/src/commands/cmd_map.cpp
@@ -35,6 +35,13 @@ CmdResult CommandMap::Handle (const std::vector<std::string>&, User *user)
// as with /LUSERS this does nothing without a linking
// module to override its behaviour and display something
// better.
+
+ if (IS_OPER(user))
+ {
+ user->WriteNumeric(006, "%s :%s [%s]", user->nick.c_str(), ServerInstance->Config->ServerName, ServerInstance->Config->GetSID().c_str());
+ user->WriteNumeric(007, "%s :End of /MAP", user->nick.c_str());
+ return CMD_SUCCESS;
+ }
user->WriteNumeric(006, "%s :%s",user->nick.c_str(),ServerInstance->Config->ServerName);
user->WriteNumeric(007, "%s :End of /MAP",user->nick.c_str());