removed the early return on agentupdates, this was debugging code

This commit is contained in:
Mic Bowman
2011-01-04 09:12:32 -08:00
parent e0da281e3d
commit 6a5d52b4c8

View File

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