diff options
author | Adam <adam@sigterm.info> | 2015-03-12 08:15:38 -0400 |
---|---|---|
committer | Adam <adam@sigterm.info> | 2015-03-12 08:15:38 -0400 |
commit | e030771cbcc947b34d264df9b200b4985bd226b6 (patch) | |
tree | 9b6f7436b5f02e28af52a8ae206adf8bc3bf9e64 | |
parent | 03f05d3948e71d1547e618539214ffcca8f52cae (diff) | |
parent | 76337bc04ac0072019cd3025da55eecd6692490f (diff) |
Merge pull request #107 from miwob/master+misc-hybrid-changes
- Misc updates to the hybrid protocol modules:
-rw-r--r-- | modules/protocol/hybrid.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/protocol/hybrid.cpp b/modules/protocol/hybrid.cpp index 5c612eba5..6c79e6d96 100644 --- a/modules/protocol/hybrid.cpp +++ b/modules/protocol/hybrid.cpp @@ -36,7 +36,7 @@ class HybridProto : public IRCDProto } public: - HybridProto(Module *creator) : IRCDProto(creator, "Hybrid 8.1.x") + HybridProto(Module *creator) : IRCDProto(creator, "Hybrid 8.2.x") { DefaultPseudoclientModes = "+oi"; CanSVSNick = true; @@ -204,7 +204,7 @@ class HybridProto : public IRCDProto SendServer(Me); - UplinkSocket::Message() << "SVINFO 6 5 0 :" << Anope::CurTime; + UplinkSocket::Message() << "SVINFO 6 6 0 :" << Anope::CurTime; } void SendClientIntroduction(User *u) anope_override @@ -550,7 +550,7 @@ struct IRCDMessageUID : IRCDMessage ip.clear(); NickAlias *na = NULL; - if (params[8] != "0") + if (params[8] != "0" && params[8] != "*") na = NickAlias::Find(params[8]); /* Source is always the server */ |