aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs
diff options
context:
space:
mode:
authorMelanie Thielker2009-01-09 02:59:56 +0000
committerMelanie Thielker2009-01-09 02:59:56 +0000
commit7c7ea57c5c2bf01280e2df03cedc999aa5e7be87 (patch)
tree73f90c8e9e362f7055bccf31af83fe332ce2f9ab /OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs
parent* Adds the variables passed to the hashtable BaseHttpServer passes in. (diff)
downloadopensim-SC_OLD-7c7ea57c5c2bf01280e2df03cedc999aa5e7be87.zip
opensim-SC_OLD-7c7ea57c5c2bf01280e2df03cedc999aa5e7be87.tar.gz
opensim-SC_OLD-7c7ea57c5c2bf01280e2df03cedc999aa5e7be87.tar.bz2
opensim-SC_OLD-7c7ea57c5c2bf01280e2df03cedc999aa5e7be87.tar.xz
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)
Diffstat (limited to 'OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs')
-rw-r--r--OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs7
1 files changed, 6 insertions, 1 deletions
diff --git a/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs b/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs
index 8cfaf88..5a7d42c 100644
--- a/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs
+++ b/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs
@@ -98,7 +98,6 @@ namespace OpenSim.Region.Examples.SimpleModule
98 public event ViewerEffectEventHandler OnViewerEffect; 98 public event ViewerEffectEventHandler OnViewerEffect;
99 99
100 public event FetchInventory OnAgentDataUpdateRequest; 100 public event FetchInventory OnAgentDataUpdateRequest;
101 public event FetchInventory OnUserInfoRequest;
102 public event TeleportLocationRequest OnSetStartLocationRequest; 101 public event TeleportLocationRequest OnSetStartLocationRequest;
103 102
104 public event UpdateShape OnUpdatePrimShape; 103 public event UpdateShape OnUpdatePrimShape;
@@ -251,6 +250,8 @@ namespace OpenSim.Region.Examples.SimpleModule
251 public event EventGodDelete OnEventGodDelete; 250 public event EventGodDelete OnEventGodDelete;
252 251
253 public event ParcelDwellRequest OnParcelDwellRequest; 252 public event ParcelDwellRequest OnParcelDwellRequest;
253 public event UserInfoRequest OnUserInfoRequest;
254 public event UpdateUserInfo OnUpdateUserInfo;
254 255
255#pragma warning restore 67 256#pragma warning restore 67
256 257
@@ -1046,6 +1047,10 @@ namespace OpenSim.Region.Examples.SimpleModule
1046 { 1047 {
1047 } 1048 }
1048 1049
1050 public void SendUserInfoReply(bool imViaEmail, bool visible, string email)
1051 {
1052 }
1053
1049 #endregion 1054 #endregion
1050 } 1055 }
1051} 1056}