diff options
Diffstat (limited to 'OpenSim/Region')
3 files changed, 10 insertions, 10 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLPacketHandler.cs b/OpenSim/Region/ClientStack/LindenUDP/LLPacketHandler.cs index 31abadb..3cfc478 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/LLPacketHandler.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/LLPacketHandler.cs | |||
@@ -234,7 +234,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
234 | { | 234 | { |
235 | DropResend(id); | 235 | DropResend(id); |
236 | 236 | ||
237 | AddAcks(ref packet); | 237 | AddAcks(ref packet); |
238 | QueuePacket(packet, throttlePacketType, id); | 238 | QueuePacket(packet, throttlePacketType, id); |
239 | 239 | ||
240 | // We want to see that packet arrive if it's reliable | 240 | // We want to see that packet arrive if it's reliable |
@@ -246,8 +246,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
246 | } | 246 | } |
247 | } | 247 | } |
248 | 248 | ||
249 | private void AddAcks(ref Packet packet) | 249 | private void AddAcks(ref Packet packet) |
250 | { | 250 | { |
251 | // Add acks to outgoing packets | 251 | // Add acks to outgoing packets |
252 | // | 252 | // |
253 | if (m_PendingAcks.Count > 0) | 253 | if (m_PendingAcks.Count > 0) |
@@ -268,8 +268,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
268 | break; | 268 | break; |
269 | } | 269 | } |
270 | } | 270 | } |
271 | } | 271 | } |
272 | 272 | ||
273 | private void QueuePacket( | 273 | private void QueuePacket( |
274 | Packet packet, ThrottleOutPacketType throttlePacketType, | 274 | Packet packet, ThrottleOutPacketType throttlePacketType, |
275 | Object id) | 275 | Object id) |
diff --git a/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs b/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs index 1a60f45..d7fd2c5 100644 --- a/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs +++ b/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs | |||
@@ -5320,8 +5320,8 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
5320 | { | 5320 | { |
5321 | m_host.AddScriptLPS(1); | 5321 | m_host.AddScriptLPS(1); |
5322 | 5322 | ||
5323 | if(m_host.ParentGroup == null) | 5323 | if (m_host.ParentGroup == null) |
5324 | return; | 5324 | return; |
5325 | 5325 | ||
5326 | SceneObjectPart part = m_host.ParentGroup.GetLinkNumPart(linknumber); | 5326 | SceneObjectPart part = m_host.ParentGroup.GetLinkNumPart(linknumber); |
5327 | 5327 | ||
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs index ed320f8..201308d 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | |||
@@ -5118,9 +5118,9 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
5118 | public void llSetLinkPrimitiveParams(int linknumber, LSL_Types.list rules) | 5118 | public void llSetLinkPrimitiveParams(int linknumber, LSL_Types.list rules) |
5119 | { | 5119 | { |
5120 | m_host.AddScriptLPS(1); | 5120 | m_host.AddScriptLPS(1); |
5121 | 5121 | ||
5122 | if(m_host.ParentGroup == null) | 5122 | if (m_host.ParentGroup == null) |
5123 | return; | 5123 | return; |
5124 | 5124 | ||
5125 | SceneObjectPart part = m_host.ParentGroup.GetLinkNumPart(linknumber); | 5125 | SceneObjectPart part = m_host.ParentGroup.GetLinkNumPart(linknumber); |
5126 | 5126 | ||