From b71d68c9bc79264d8011e9ce7df417e4ff1f3cb8 Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Fri, 13 Feb 2009 20:12:11 +0000 Subject: * Change static field "initialized" in RestInterregionComms to an instance field * This was the cause of teleport tests interfering with each other --- OpenSim/Region/Framework/Scenes/Scene.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'OpenSim/Region/Framework/Scenes/Scene.cs') diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs index 611b9db..c31e6f7 100644 --- a/OpenSim/Region/Framework/Scenes/Scene.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.cs @@ -3750,7 +3750,7 @@ namespace OpenSim.Region.Framework.Scenes SceneObjectPart jointProxyObject = GetSceneObjectPart(joint.ObjectNameInScene); if (jointProxyObject != null) { - SimChat(Utils.StringToBytes("[NINJA] " + message), + SimChat(Utils.StringToBytes("[NINJA]: " + message), ChatTypeEnum.DebugChannel, 2147483647, jointProxyObject.AbsolutePosition, @@ -3762,7 +3762,7 @@ namespace OpenSim.Region.Framework.Scenes if (joint.ErrorMessageCount > PhysicsJoint.maxErrorMessages) { - SimChat(Utils.StringToBytes("[NINJA] Too many messages for this joint, suppressing further messages."), + SimChat(Utils.StringToBytes("[NINJA]: Too many messages for this joint, suppressing further messages."), ChatTypeEnum.DebugChannel, 2147483647, jointProxyObject.AbsolutePosition, -- cgit v1.1