Finish dwell sending, adding the forgotten method body.

Add UserInfo and a dummy reply to enable Hippo Viewer users to
disable IM logging (option was greyed out in OpenSim before)
This commit is contained in:
Melanie Thielker
2009-01-09 02:59:56 +00:00
parent fcc3325f3b
commit 7c7ea57c5c
5 changed files with 88 additions and 9 deletions

View File

@@ -98,7 +98,6 @@ namespace OpenSim.Region.Examples.SimpleModule
public event ViewerEffectEventHandler OnViewerEffect;
public event FetchInventory OnAgentDataUpdateRequest;
public event FetchInventory OnUserInfoRequest;
public event TeleportLocationRequest OnSetStartLocationRequest;
public event UpdateShape OnUpdatePrimShape;
@@ -251,6 +250,8 @@ namespace OpenSim.Region.Examples.SimpleModule
public event EventGodDelete OnEventGodDelete;
public event ParcelDwellRequest OnParcelDwellRequest;
public event UserInfoRequest OnUserInfoRequest;
public event UpdateUserInfo OnUpdateUserInfo;
#pragma warning restore 67
@@ -1046,6 +1047,10 @@ namespace OpenSim.Region.Examples.SimpleModule
{
}
public void SendUserInfoReply(bool imViaEmail, bool visible, string email)
{
}
#endregion
}
}