mirror of
https://github.com/opensim/opensim.git
synced 2026-08-08 02:05:34 +08:00
* Some refactorings.
* Added shell of new Python scripting engine. Similar in design to the one used by Rex, but will be structured at a region rather than object level, also is a region module.
This commit is contained in:
@@ -1007,10 +1007,16 @@ namespace OpenSim.ApplicationPlugins.LoadBalancer
|
||||
m_log.ErrorFormat("[SPLITSCENE] [LocalUpdatePacket] ScenePresence is missing... ({0})", agentID.ToString());
|
||||
return;
|
||||
}
|
||||
|
||||
if (((LLClientView) pre.ControllingClient).IsActive)
|
||||
if (pre.ControllingClient is LLClientView)
|
||||
{
|
||||
pre.ControllingClient.OutPacket(packet, throttlePacketType);
|
||||
if (((LLClientView)pre.ControllingClient).IsActive)
|
||||
{
|
||||
((LLClientView)pre.ControllingClient).OutPacket(packet, throttlePacketType);
|
||||
}
|
||||
else
|
||||
{
|
||||
PacketPool.Instance.ReturnPacket(packet);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user