removed the early return on agentupdates, this was debugging code

viewer-2-initial-appearance
Mic Bowman 2011-01-04 09:12:32 -08:00
parent e0da281e3d
commit 6a5d52b4c8
1 changed files with 1 additions and 1 deletions

View File

@ -133,7 +133,7 @@ namespace OpenSim.Services.Connectors.Simulation
public bool UpdateAgent(GridRegion destination, AgentPosition data) public bool UpdateAgent(GridRegion destination, AgentPosition data)
{ {
// we need a better throttle for these // we need a better throttle for these
return false; // return false;
return UpdateAgent(destination, (IAgentData)data); return UpdateAgent(destination, (IAgentData)data);
} }