diff options
author | Justin Clarke Casey | 2009-01-15 21:27:55 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2009-01-15 21:27:55 +0000 |
commit | 093adb2113d748f28554393cc8a6fe53502126dc (patch) | |
tree | 5565cca869b7a83845efc129f21e5f1219c16adf /OpenSim/Region/Environment/Modules | |
parent | Small bit of refactoring related to the hypergrid link loading from xml files. (diff) | |
download | opensim-SC_OLD-093adb2113d748f28554393cc8a6fe53502126dc.zip opensim-SC_OLD-093adb2113d748f28554393cc8a6fe53502126dc.tar.gz opensim-SC_OLD-093adb2113d748f28554393cc8a6fe53502126dc.tar.bz2 opensim-SC_OLD-093adb2113d748f28554393cc8a6fe53502126dc.tar.xz |
* Add new unit test for simple teleport in a standalone.
* Does not yet check results.
Diffstat (limited to 'OpenSim/Region/Environment/Modules')
-rw-r--r-- | OpenSim/Region/Environment/Modules/Communications/Local/LocalInterregionComms.cs | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/OpenSim/Region/Environment/Modules/Communications/Local/LocalInterregionComms.cs b/OpenSim/Region/Environment/Modules/Communications/Local/LocalInterregionComms.cs index efc5c39..5fcb4bc 100644 --- a/OpenSim/Region/Environment/Modules/Communications/Local/LocalInterregionComms.cs +++ b/OpenSim/Region/Environment/Modules/Communications/Local/LocalInterregionComms.cs | |||
@@ -75,7 +75,6 @@ namespace OpenSim.Region.Environment.Modules.Communications.Local | |||
75 | return; | 75 | return; |
76 | 76 | ||
77 | Init(scene); | 77 | Init(scene); |
78 | |||
79 | } | 78 | } |
80 | 79 | ||
81 | public void PostInitialise() | 80 | public void PostInitialise() |
@@ -119,17 +118,17 @@ namespace OpenSim.Region.Environment.Modules.Communications.Local | |||
119 | #region IInterregionComms | 118 | #region IInterregionComms |
120 | 119 | ||
121 | public bool SendCreateChildAgent(ulong regionHandle, AgentCircuitData aCircuit) | 120 | public bool SendCreateChildAgent(ulong regionHandle, AgentCircuitData aCircuit) |
122 | { | 121 | { |
123 | foreach (Scene s in m_sceneList) | 122 | foreach (Scene s in m_sceneList) |
124 | { | 123 | { |
125 | if (s.RegionInfo.RegionHandle == regionHandle) | 124 | if (s.RegionInfo.RegionHandle == regionHandle) |
126 | { | 125 | { |
127 | //m_log.Debug("[LOCAL COMMS]: Found region to send SendCreateChildAgent"); | 126 | // m_log.DebugFormat("[LOCAL COMMS]: Found region {0} to send SendCreateChildAgent", regionHandle); |
128 | s.NewUserConnection(aCircuit); | 127 | s.NewUserConnection(aCircuit); |
129 | return true; | 128 | return true; |
130 | } | 129 | } |
131 | } | 130 | } |
132 | //m_log.Debug("[LOCAL COMMS]: region not found for SendCreateChildAgent"); | 131 | // m_log.DebugFormat("[LOCAL COMMS]: Did not find region {0} for SendCreateChildAgent", regionHandle); |
133 | return false; | 132 | return false; |
134 | } | 133 | } |
135 | 134 | ||