diff options
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/InnerScene.cs')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/InnerScene.cs | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/OpenSim/Region/Environment/Scenes/InnerScene.cs b/OpenSim/Region/Environment/Scenes/InnerScene.cs index 8894db0..329f900 100644 --- a/OpenSim/Region/Environment/Scenes/InnerScene.cs +++ b/OpenSim/Region/Environment/Scenes/InnerScene.cs | |||
@@ -27,11 +27,12 @@ | |||
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using System.Collections.Generic; | 29 | using System.Collections.Generic; |
30 | using System.Reflection; | ||
30 | using Axiom.Math; | 31 | using Axiom.Math; |
31 | using libsecondlife; | 32 | using libsecondlife; |
32 | using libsecondlife.Packets; | 33 | using libsecondlife.Packets; |
34 | using log4net; | ||
33 | using OpenSim.Framework; | 35 | using OpenSim.Framework; |
34 | using OpenSim.Framework.Console; | ||
35 | using OpenSim.Region.Environment.Types; | 36 | using OpenSim.Region.Environment.Types; |
36 | using OpenSim.Region.Physics.Manager; | 37 | using OpenSim.Region.Physics.Manager; |
37 | 38 | ||
@@ -41,7 +42,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
41 | 42 | ||
42 | public class InnerScene | 43 | public class InnerScene |
43 | { | 44 | { |
44 | private static readonly log4net.ILog m_log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | 45 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
45 | 46 | ||
46 | #region Events | 47 | #region Events |
47 | 48 | ||
@@ -295,7 +296,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
295 | 296 | ||
296 | public void AttachObject(IClientAPI remoteClient, uint objectLocalID, uint AttachmentPt, LLQuaternion rot) | 297 | public void AttachObject(IClientAPI remoteClient, uint objectLocalID, uint AttachmentPt, LLQuaternion rot) |
297 | { | 298 | { |
298 | System.Console.WriteLine("Attaching object " + objectLocalID + " to " + AttachmentPt); | 299 | Console.WriteLine("Attaching object " + objectLocalID + " to " + AttachmentPt); |
299 | SceneObjectPart p = GetSceneObjectPart(objectLocalID); | 300 | SceneObjectPart p = GetSceneObjectPart(objectLocalID); |
300 | if (p != null) | 301 | if (p != null) |
301 | { | 302 | { |