diff options
author | Diva Canto | 2010-01-03 11:44:57 -0800 |
---|---|---|
committer | Diva Canto | 2010-01-03 11:44:57 -0800 |
commit | 99efa99585639c94fdb484681663ac7b6f03538e (patch) | |
tree | f74eb3e9c080e381d37b2d936ba9b0c091196f56 /OpenSim/Region/CoreModules/ServiceConnectorsIn/Simulation | |
parent | * Changed ISimulation interface to take a GridRegion as input arg instead of ... (diff) | |
download | opensim-SC-99efa99585639c94fdb484681663ac7b6f03538e.zip opensim-SC-99efa99585639c94fdb484681663ac7b6f03538e.tar.gz opensim-SC-99efa99585639c94fdb484681663ac7b6f03538e.tar.bz2 opensim-SC-99efa99585639c94fdb484681663ac7b6f03538e.tar.xz |
Successfully logged into a grid.
Diffstat (limited to 'OpenSim/Region/CoreModules/ServiceConnectorsIn/Simulation')
-rw-r--r-- | OpenSim/Region/CoreModules/ServiceConnectorsIn/Simulation/SimulationServiceInConnectorModule.cs | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/OpenSim/Region/CoreModules/ServiceConnectorsIn/Simulation/SimulationServiceInConnectorModule.cs b/OpenSim/Region/CoreModules/ServiceConnectorsIn/Simulation/SimulationServiceInConnectorModule.cs index 03a5124..5ee1c97 100644 --- a/OpenSim/Region/CoreModules/ServiceConnectorsIn/Simulation/SimulationServiceInConnectorModule.cs +++ b/OpenSim/Region/CoreModules/ServiceConnectorsIn/Simulation/SimulationServiceInConnectorModule.cs | |||
@@ -91,6 +91,17 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsIn.Simulation | |||
91 | if (!m_Enabled) | 91 | if (!m_Enabled) |
92 | return; | 92 | return; |
93 | 93 | ||
94 | } | ||
95 | |||
96 | public void RemoveRegion(Scene scene) | ||
97 | { | ||
98 | } | ||
99 | |||
100 | public void RegionLoaded(Scene scene) | ||
101 | { | ||
102 | if (!m_Enabled) | ||
103 | return; | ||
104 | |||
94 | if (!m_Registered) | 105 | if (!m_Registered) |
95 | { | 106 | { |
96 | m_Registered = true; | 107 | m_Registered = true; |
@@ -103,14 +114,6 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsIn.Simulation | |||
103 | } | 114 | } |
104 | } | 115 | } |
105 | 116 | ||
106 | public void RemoveRegion(Scene scene) | ||
107 | { | ||
108 | } | ||
109 | |||
110 | public void RegionLoaded(Scene scene) | ||
111 | { | ||
112 | } | ||
113 | |||
114 | #endregion | 117 | #endregion |
115 | 118 | ||
116 | } | 119 | } |