diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/Scene.Inventory.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs b/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs index 66905fe..3e87578 100644 --- a/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs | |||
@@ -1880,11 +1880,11 @@ namespace OpenSim.Region.Framework.Scenes | |||
1880 | { | 1880 | { |
1881 | Vector3 inventoryStoredPosition = new Vector3 | 1881 | Vector3 inventoryStoredPosition = new Vector3 |
1882 | (((grp.AbsolutePosition.X > (int)Constants.RegionSize) | 1882 | (((grp.AbsolutePosition.X > (int)Constants.RegionSize) |
1883 | ? 250 | 1883 | ? Constants.RegionSize - 6 |
1884 | : grp.AbsolutePosition.X) | 1884 | : grp.AbsolutePosition.X) |
1885 | , | 1885 | , |
1886 | (grp.AbsolutePosition.Y > (int)Constants.RegionSize) | 1886 | (grp.AbsolutePosition.Y > (int)Constants.RegionSize) |
1887 | ? 250 | 1887 | ? Constants.RegionSize - 6 |
1888 | : grp.AbsolutePosition.Y, | 1888 | : grp.AbsolutePosition.Y, |
1889 | grp.AbsolutePosition.Z); | 1889 | grp.AbsolutePosition.Z); |
1890 | 1890 | ||