diff options
author | Justin Clarke Casey | 2009-04-07 20:24:09 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2009-04-07 20:24:09 +0000 |
commit | ad7b005784cd44fe6db20db365f7723e23bdc51a (patch) | |
tree | fee6dd8bd163a2e0587866e202fc80b98c953e50 /OpenSim/Region/Framework | |
parent | * Remove unnecessary build dependencies on the ExamplemoneyModule stub. (diff) | |
download | opensim-SC_OLD-ad7b005784cd44fe6db20db365f7723e23bdc51a.zip opensim-SC_OLD-ad7b005784cd44fe6db20db365f7723e23bdc51a.tar.gz opensim-SC_OLD-ad7b005784cd44fe6db20db365f7723e23bdc51a.tar.bz2 opensim-SC_OLD-ad7b005784cd44fe6db20db365f7723e23bdc51a.tar.xz |
* minor: remove some mono compiler warnings
Diffstat (limited to 'OpenSim/Region/Framework')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/Scene.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs index 0991171..3266703 100644 --- a/OpenSim/Region/Framework/Scenes/Scene.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.cs | |||
@@ -1744,8 +1744,9 @@ namespace OpenSim.Region.Framework.Scenes | |||
1744 | if (sp != null) | 1744 | if (sp != null) |
1745 | { | 1745 | { |
1746 | uint attPt = (uint)sp.Appearance.GetAttachpoint(itemID); | 1746 | uint attPt = (uint)sp.Appearance.GetAttachpoint(itemID); |
1747 | SceneObjectGroup sog = m_sceneGraph.RezSingleAttachment(sp.ControllingClient, itemID, attPt); | 1747 | m_sceneGraph.RezSingleAttachment(sp.ControllingClient, itemID, attPt); |
1748 | } | 1748 | } |
1749 | |||
1749 | return false; | 1750 | return false; |
1750 | } | 1751 | } |
1751 | 1752 | ||