diff options
| author | 2009-09-02 00:52:28 +0000 | |
|---|---|---|
| committer | 2009-09-02 00:52:28 +0000 | |
| commit | fc4d8fc4cc409770c0488c7b56f1b140dcbd2397 (patch) | |
| tree | 6f360605185e2ed6fb61b0cec55b4947e32d0c3c /src/modules/m_sajoin.cpp | |
| parent | Route CHGHOST/CHGNAME/CHGIDENT using optional unicast routing (diff) | |
Change more modules to use VF_OPTCOMMON routing
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11654 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_sajoin.cpp')
| -rw-r--r-- | src/modules/m_sajoin.cpp | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/modules/m_sajoin.cpp b/src/modules/m_sajoin.cpp index f40451dfa..221c49328 100644 --- a/src/modules/m_sajoin.cpp +++ b/src/modules/m_sajoin.cpp @@ -83,6 +83,14 @@ class CommandSajoin : public Command return CMD_FAILURE; } } + + RouteDescriptor GetRouting(User* user, const std::vector<std::string>& parameters) + { + User* dest = ServerInstance->FindNick(parameters[0]); + if (dest) + return ROUTE_OPT_UCAST(dest->server); + return ROUTE_LOCALONLY; + } }; class ModuleSajoin : public Module @@ -101,7 +109,7 @@ class ModuleSajoin : public Module virtual Version GetVersion() { - return Version("$Id$", VF_COMMON | VF_VENDOR, API_VERSION); + return Version("$Id$", VF_OPTCOMMON | VF_VENDOR, API_VERSION); } }; |
