Move requestonlinenotification generic message to presence module

This commit is contained in:
Melanie
2010-02-27 15:37:00 +00:00
parent 6f770af5fb
commit 0ab65899e4
2 changed files with 30 additions and 6 deletions

View File

@@ -211,8 +211,6 @@ namespace OpenSim.Region.CoreModules.Avatar.Friends
client.OnLogout += OnLogout;
client.OnEconomyDataRequest += SendPresence;
client.AddGenericPacketHandler("requestonlinenotification", OnRequestOnlineNotification);
if (m_Friends.ContainsKey(client.AgentId))
{
m_Friends[client.AgentId].Refcount++;
@@ -531,9 +529,5 @@ namespace OpenSim.Region.CoreModules.Avatar.Friends
m_FriendsSimConnector.GrantRights(region, requester, target);
}
}
public void OnRequestOnlineNotification(Object sender, string method, List<String> args)
{
}
}
}