diff options
author | Justin Clark-Casey (justincc) | 2009-09-08 17:50:45 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2009-09-08 17:50:45 +0100 |
commit | 2bb2a0ec44c2e267d7fa7ab1e071c01e0443dedb (patch) | |
tree | 0c4a5c9659bcea505e316c35940ad9e821d9d6f5 /OpenSim/Region/Framework/Scenes/Scene.Inventory.cs | |
parent | extend load iar test to loading into a deeply nested directory (diff) | |
parent | Merge branch 'master' of ssh://MyConnection/var/git/opensim (diff) | |
download | opensim-SC-2bb2a0ec44c2e267d7fa7ab1e071c01e0443dedb.zip opensim-SC-2bb2a0ec44c2e267d7fa7ab1e071c01e0443dedb.tar.gz opensim-SC-2bb2a0ec44c2e267d7fa7ab1e071c01e0443dedb.tar.bz2 opensim-SC-2bb2a0ec44c2e267d7fa7ab1e071c01e0443dedb.tar.xz |
Merge branch 'master' of ssh://justincc@opensimulator.org/var/git/opensim
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/Scene.Inventory.cs')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/Scene.Inventory.cs | 36 |
1 files changed, 35 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs b/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs index f638386..4ea283f 100644 --- a/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs | |||
@@ -1620,8 +1620,24 @@ namespace OpenSim.Region.Framework.Scenes | |||
1620 | { | 1620 | { |
1621 | UUID assetID = UUID.Zero; | 1621 | UUID assetID = UUID.Zero; |
1622 | 1622 | ||
1623 | Vector3 inventoryStoredPosition = new Vector3 | ||
1624 | (((objectGroup.AbsolutePosition.X > (int)Constants.RegionSize) | ||
1625 | ? 250 | ||
1626 | : objectGroup.AbsolutePosition.X) | ||
1627 | , | ||
1628 | (objectGroup.AbsolutePosition.X > (int)Constants.RegionSize) | ||
1629 | ? 250 | ||
1630 | : objectGroup.AbsolutePosition.X, | ||
1631 | objectGroup.AbsolutePosition.Z); | ||
1632 | |||
1633 | Vector3 originalPosition = objectGroup.AbsolutePosition; | ||
1634 | |||
1635 | objectGroup.AbsolutePosition = inventoryStoredPosition; | ||
1636 | |||
1623 | string sceneObjectXml = SceneObjectSerializer.ToOriginalXmlFormat(objectGroup); | 1637 | string sceneObjectXml = SceneObjectSerializer.ToOriginalXmlFormat(objectGroup); |
1624 | 1638 | ||
1639 | objectGroup.AbsolutePosition = originalPosition; | ||
1640 | |||
1625 | // Get the user info of the item destination | 1641 | // Get the user info of the item destination |
1626 | // | 1642 | // |
1627 | UUID userID = UUID.Zero; | 1643 | UUID userID = UUID.Zero; |
@@ -1683,6 +1699,8 @@ namespace OpenSim.Region.Framework.Scenes | |||
1683 | { | 1699 | { |
1684 | // Deleting someone else's item | 1700 | // Deleting someone else's item |
1685 | // | 1701 | // |
1702 | |||
1703 | |||
1686 | if (remoteClient == null || | 1704 | if (remoteClient == null || |
1687 | objectGroup.OwnerID != remoteClient.AgentId) | 1705 | objectGroup.OwnerID != remoteClient.AgentId) |
1688 | { | 1706 | { |
@@ -1857,8 +1875,24 @@ namespace OpenSim.Region.Framework.Scenes | |||
1857 | itemID = UUID.Zero; | 1875 | itemID = UUID.Zero; |
1858 | if (grp != null) | 1876 | if (grp != null) |
1859 | { | 1877 | { |
1878 | Vector3 inventoryStoredPosition = new Vector3 | ||
1879 | (((grp.AbsolutePosition.X > (int)Constants.RegionSize) | ||
1880 | ? 250 | ||
1881 | : grp.AbsolutePosition.X) | ||
1882 | , | ||
1883 | (grp.AbsolutePosition.X > (int)Constants.RegionSize) | ||
1884 | ? 250 | ||
1885 | : grp.AbsolutePosition.X, | ||
1886 | grp.AbsolutePosition.Z); | ||
1887 | |||
1888 | Vector3 originalPosition = grp.AbsolutePosition; | ||
1889 | |||
1890 | grp.AbsolutePosition = inventoryStoredPosition; | ||
1891 | |||
1860 | string sceneObjectXml = SceneObjectSerializer.ToOriginalXmlFormat(grp); | 1892 | string sceneObjectXml = SceneObjectSerializer.ToOriginalXmlFormat(grp); |
1861 | 1893 | ||
1894 | grp.AbsolutePosition = originalPosition; | ||
1895 | |||
1862 | AssetBase asset = CreateAsset( | 1896 | AssetBase asset = CreateAsset( |
1863 | grp.GetPartName(grp.LocalId), | 1897 | grp.GetPartName(grp.LocalId), |
1864 | grp.GetPartDescription(grp.LocalId), | 1898 | grp.GetPartDescription(grp.LocalId), |