aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Examples/SimpleModule
diff options
context:
space:
mode:
authorHomer Horwitz2008-12-12 19:39:48 +0000
committerHomer Horwitz2008-12-12 19:39:48 +0000
commit66791c90e43a20cead21dcf82aa65a5bb047ed33 (patch)
tree952291c7a39e923bf78c2f089a4d6558a05eb841 /OpenSim/Region/Examples/SimpleModule
parent* add purge folder test (diff)
downloadopensim-SC_OLD-66791c90e43a20cead21dcf82aa65a5bb047ed33.zip
opensim-SC_OLD-66791c90e43a20cead21dcf82aa65a5bb047ed33.tar.gz
opensim-SC_OLD-66791c90e43a20cead21dcf82aa65a5bb047ed33.tar.bz2
opensim-SC_OLD-66791c90e43a20cead21dcf82aa65a5bb047ed33.tar.xz
Replace the throwing of a NonImplementedException in MyNpcCharacter, so that
the SimpleModule doesn't prevent the start of the region server, if used. Note: This module doesn't do anything sensible; it only serves as an example.
Diffstat (limited to 'OpenSim/Region/Examples/SimpleModule')
-rw-r--r--OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs b/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs
index f1a61bb..d80f621 100644
--- a/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs
+++ b/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs
@@ -1000,7 +1000,7 @@ namespace OpenSim.Region.Examples.SimpleModule
1000 1000
1001 public bool AddGenericPacketHandler(string MethodName, GenericMessage handler) 1001 public bool AddGenericPacketHandler(string MethodName, GenericMessage handler)
1002 { 1002 {
1003 throw new NotImplementedException(); 1003 return true;
1004 } 1004 }
1005 1005
1006 #endregion 1006 #endregion