aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework
diff options
context:
space:
mode:
authorUbitUmarov2017-06-11 22:32:56 +0100
committerUbitUmarov2017-06-11 22:32:56 +0100
commitd0afd4335c517d9a675708f8bf83b5d217c0e36f (patch)
tree2242a480dbaab448a92b2b9fae08c9f390a0e0c2 /OpenSim/Region/Framework
parentforget about stupid mono 32bit (diff)
downloadopensim-SC_OLD-d0afd4335c517d9a675708f8bf83b5d217c0e36f.zip
opensim-SC_OLD-d0afd4335c517d9a675708f8bf83b5d217c0e36f.tar.gz
opensim-SC_OLD-d0afd4335c517d9a675708f8bf83b5d217c0e36f.tar.bz2
opensim-SC_OLD-d0afd4335c517d9a675708f8bf83b5d217c0e36f.tar.xz
fix a error message
Diffstat (limited to 'OpenSim/Region/Framework')
-rwxr-xr-xOpenSim/Region/Framework/Scenes/SceneGraph.cs7
1 files changed, 5 insertions, 2 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneGraph.cs b/OpenSim/Region/Framework/Scenes/SceneGraph.cs
index 96b8c8b..b51c169 100755
--- a/OpenSim/Region/Framework/Scenes/SceneGraph.cs
+++ b/OpenSim/Region/Framework/Scenes/SceneGraph.cs
@@ -1661,8 +1661,11 @@ namespace OpenSim.Region.Framework.Scenes
1661 1661
1662 if (wantedPhys != group.UsesPhysics && remoteClient != null) 1662 if (wantedPhys != group.UsesPhysics && remoteClient != null)
1663 { 1663 {
1664 remoteClient.SendAlertMessage("Object physics canceled because exceeds the limit of " + 1664 if(m_parentScene.m_linksetPhysCapacity != 0)
1665 m_parentScene.m_linksetPhysCapacity + " physical prims with shape type not set to None"); 1665 remoteClient.SendAlertMessage("Object physics canceled because exceeds limits for physical prims, either size or number of primswith shape type not set to None");
1666 else
1667 remoteClient.SendAlertMessage("Object physics canceled because exceeds size limits for physical prims");
1668
1666 group.RootPart.ScheduleFullUpdate(); 1669 group.RootPart.ScheduleFullUpdate();
1667 } 1670 }
1668 } 1671 }