From d2b1b54f497b9d401958806b433559dbbb9fa4fa Mon Sep 17 00:00:00 2001 From: lbsa71 Date: Fri, 30 Nov 2007 08:08:14 +0000 Subject: * Removed permissions flag appliance from Xml deserialization * Various code convention compliance --- OpenSim/Region/Environment/Scenes/SceneXmlLoader.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'OpenSim/Region/Environment/Scenes/SceneXmlLoader.cs') diff --git a/OpenSim/Region/Environment/Scenes/SceneXmlLoader.cs b/OpenSim/Region/Environment/Scenes/SceneXmlLoader.cs index e9c0124..40f8b96 100644 --- a/OpenSim/Region/Environment/Scenes/SceneXmlLoader.cs +++ b/OpenSim/Region/Environment/Scenes/SceneXmlLoader.cs @@ -55,7 +55,7 @@ namespace OpenSim.Region.Environment.Scenes new PhysicsVector(rootPart.Scale.X, rootPart.Scale.Y, rootPart.Scale.Z), new Quaternion(rootPart.RotationOffset.W, rootPart.RotationOffset.X, rootPart.RotationOffset.Y, rootPart.RotationOffset.Z), UsePhysics); - rootPart.doPhysicsPropertyUpdate(UsePhysics, true); + rootPart.DoPhysicsPropertyUpdate(UsePhysics, true); } primCount++; @@ -125,7 +125,7 @@ namespace OpenSim.Region.Environment.Scenes new PhysicsVector(rootPart.Scale.X, rootPart.Scale.Y, rootPart.Scale.Z), new Quaternion(rootPart.RotationOffset.W, rootPart.RotationOffset.X, rootPart.RotationOffset.Y, rootPart.RotationOffset.Z), UsePhysics); - rootPart.doPhysicsPropertyUpdate(UsePhysics, true); + rootPart.DoPhysicsPropertyUpdate(UsePhysics, true); } } -- cgit v1.1