diff options
author | Justin Clark-Casey (justincc) | 2013-09-18 23:09:38 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2013-09-18 23:09:38 +0100 |
commit | ddcbd4bb7d1518d0607d43e9d687faee186e9409 (patch) | |
tree | bc69f86190fafd3ebdaf86b204c2ab14a2c4aa9b /OpenSim/Region/CoreModules | |
parent | minor: Make log message when Scene.IncomingChildAgentDateUpdate() more explic... (diff) | |
download | opensim-SC_OLD-ddcbd4bb7d1518d0607d43e9d687faee186e9409.zip opensim-SC_OLD-ddcbd4bb7d1518d0607d43e9d687faee186e9409.tar.gz opensim-SC_OLD-ddcbd4bb7d1518d0607d43e9d687faee186e9409.tar.bz2 opensim-SC_OLD-ddcbd4bb7d1518d0607d43e9d687faee186e9409.tar.xz |
refactor: rename *ChildAgentDataUpdate() methods to *UpdateChildAgent()
verb-noun is consistent with other similar methods
Diffstat (limited to 'OpenSim/Region/CoreModules')
-rw-r--r-- | OpenSim/Region/CoreModules/ServiceConnectorsOut/Simulation/LocalSimulationConnector.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/CoreModules/ServiceConnectorsOut/Simulation/LocalSimulationConnector.cs b/OpenSim/Region/CoreModules/ServiceConnectorsOut/Simulation/LocalSimulationConnector.cs index e86d186..8ec943d 100644 --- a/OpenSim/Region/CoreModules/ServiceConnectorsOut/Simulation/LocalSimulationConnector.cs +++ b/OpenSim/Region/CoreModules/ServiceConnectorsOut/Simulation/LocalSimulationConnector.cs | |||
@@ -235,7 +235,7 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.Simulation | |||
235 | // "[LOCAL SIMULATION CONNECTOR]: Found region {0} {1} to send AgentUpdate", | 235 | // "[LOCAL SIMULATION CONNECTOR]: Found region {0} {1} to send AgentUpdate", |
236 | // destination.RegionName, destination.RegionID); | 236 | // destination.RegionName, destination.RegionID); |
237 | 237 | ||
238 | return m_scenes[destination.RegionID].IncomingChildAgentDataUpdate(cAgentData); | 238 | return m_scenes[destination.RegionID].IncomingUpdateChildAgent(cAgentData); |
239 | } | 239 | } |
240 | 240 | ||
241 | // m_log.DebugFormat( | 241 | // m_log.DebugFormat( |
@@ -245,7 +245,7 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.Simulation | |||
245 | return false; | 245 | return false; |
246 | } | 246 | } |
247 | 247 | ||
248 | public bool UpdateAgent(GridRegion destination, AgentPosition cAgentData) | 248 | public bool UpdateAgent(GridRegion destination, AgentPosition agentPosition) |
249 | { | 249 | { |
250 | if (destination == null) | 250 | if (destination == null) |
251 | return false; | 251 | return false; |
@@ -257,7 +257,7 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.Simulation | |||
257 | foreach (Scene s in m_scenes.Values) | 257 | foreach (Scene s in m_scenes.Values) |
258 | { | 258 | { |
259 | // m_log.Debug("[LOCAL COMMS]: Found region to send ChildAgentUpdate"); | 259 | // m_log.Debug("[LOCAL COMMS]: Found region to send ChildAgentUpdate"); |
260 | s.IncomingChildAgentDataUpdate(cAgentData); | 260 | s.IncomingUpdateChildAgent(agentPosition); |
261 | } | 261 | } |
262 | 262 | ||
263 | //m_log.Debug("[LOCAL COMMS]: region not found for ChildAgentUpdate"); | 263 | //m_log.Debug("[LOCAL COMMS]: region not found for ChildAgentUpdate"); |