diff options
author | UbitUmarov | 2017-06-11 22:32:56 +0100 |
---|---|---|
committer | UbitUmarov | 2017-06-11 22:32:56 +0100 |
commit | d0afd4335c517d9a675708f8bf83b5d217c0e36f (patch) | |
tree | 2242a480dbaab448a92b2b9fae08c9f390a0e0c2 /OpenSim/Region/Framework | |
parent | forget about stupid mono 32bit (diff) | |
download | opensim-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-x | OpenSim/Region/Framework/Scenes/SceneGraph.cs | 7 |
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 | } |