aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region
diff options
context:
space:
mode:
authorUbitUmarov2013-05-31 23:18:12 +0100
committerUbitUmarov2013-05-31 23:18:12 +0100
commit8fe2308afcd31abd1c0110fc44e78497ad66c231 (patch)
treeeba6510acf2087229b53261f80229467df8d1865 /OpenSim/Region
parentretouch prim stopped condition test (diff)
parentFix multi-wear of alpha and tattoo layers. (diff)
downloadopensim-SC_OLD-8fe2308afcd31abd1c0110fc44e78497ad66c231.zip
opensim-SC_OLD-8fe2308afcd31abd1c0110fc44e78497ad66c231.tar.gz
opensim-SC_OLD-8fe2308afcd31abd1c0110fc44e78497ad66c231.tar.bz2
opensim-SC_OLD-8fe2308afcd31abd1c0110fc44e78497ad66c231.tar.xz
Merge branch 'avination-current' into ubitwork
Diffstat (limited to 'OpenSim/Region')
-rw-r--r--OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs8
-rw-r--r--OpenSim/Region/Framework/Scenes/KeyframeMotion.cs2
2 files changed, 5 insertions, 5 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
index 7208f08..eebb8ae 100644
--- a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
+++ b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
@@ -1737,7 +1737,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
1737 newBlock.CreationDate = item.CreationDate; 1737 newBlock.CreationDate = item.CreationDate;
1738 newBlock.SalePrice = item.SalePrice; 1738 newBlock.SalePrice = item.SalePrice;
1739 newBlock.SaleType = item.SaleType; 1739 newBlock.SaleType = item.SaleType;
1740 newBlock.Flags = item.Flags; 1740 newBlock.Flags = item.Flags & 0xff;
1741 1741
1742 newBlock.CRC = 1742 newBlock.CRC =
1743 Helpers.InventoryCRC(newBlock.CreationDate, newBlock.SaleType, 1743 Helpers.InventoryCRC(newBlock.CreationDate, newBlock.SaleType,
@@ -1991,7 +1991,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
1991 itemBlock.GroupID = item.GroupID; 1991 itemBlock.GroupID = item.GroupID;
1992 itemBlock.GroupOwned = item.GroupOwned; 1992 itemBlock.GroupOwned = item.GroupOwned;
1993 itemBlock.GroupMask = item.GroupPermissions; 1993 itemBlock.GroupMask = item.GroupPermissions;
1994 itemBlock.Flags = item.Flags; 1994 itemBlock.Flags = item.Flags & 0xff;
1995 itemBlock.SalePrice = item.SalePrice; 1995 itemBlock.SalePrice = item.SalePrice;
1996 itemBlock.SaleType = item.SaleType; 1996 itemBlock.SaleType = item.SaleType;
1997 itemBlock.CreationDate = item.CreationDate; 1997 itemBlock.CreationDate = item.CreationDate;
@@ -2058,7 +2058,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
2058 bulkUpdate.ItemData[0].GroupID = item.GroupID; 2058 bulkUpdate.ItemData[0].GroupID = item.GroupID;
2059 bulkUpdate.ItemData[0].GroupOwned = item.GroupOwned; 2059 bulkUpdate.ItemData[0].GroupOwned = item.GroupOwned;
2060 bulkUpdate.ItemData[0].GroupMask = item.GroupPermissions; 2060 bulkUpdate.ItemData[0].GroupMask = item.GroupPermissions;
2061 bulkUpdate.ItemData[0].Flags = item.Flags; 2061 bulkUpdate.ItemData[0].Flags = item.Flags & 0xff;
2062 bulkUpdate.ItemData[0].SalePrice = item.SalePrice; 2062 bulkUpdate.ItemData[0].SalePrice = item.SalePrice;
2063 bulkUpdate.ItemData[0].SaleType = item.SaleType; 2063 bulkUpdate.ItemData[0].SaleType = item.SaleType;
2064 2064
@@ -2112,7 +2112,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
2112 InventoryReply.InventoryData[0].GroupID = Item.GroupID; 2112 InventoryReply.InventoryData[0].GroupID = Item.GroupID;
2113 InventoryReply.InventoryData[0].GroupOwned = Item.GroupOwned; 2113 InventoryReply.InventoryData[0].GroupOwned = Item.GroupOwned;
2114 InventoryReply.InventoryData[0].GroupMask = Item.GroupPermissions; 2114 InventoryReply.InventoryData[0].GroupMask = Item.GroupPermissions;
2115 InventoryReply.InventoryData[0].Flags = Item.Flags; 2115 InventoryReply.InventoryData[0].Flags = Item.Flags & 0xff;
2116 InventoryReply.InventoryData[0].SalePrice = Item.SalePrice; 2116 InventoryReply.InventoryData[0].SalePrice = Item.SalePrice;
2117 InventoryReply.InventoryData[0].SaleType = Item.SaleType; 2117 InventoryReply.InventoryData[0].SaleType = Item.SaleType;
2118 InventoryReply.InventoryData[0].CreationDate = Item.CreationDate; 2118 InventoryReply.InventoryData[0].CreationDate = Item.CreationDate;
diff --git a/OpenSim/Region/Framework/Scenes/KeyframeMotion.cs b/OpenSim/Region/Framework/Scenes/KeyframeMotion.cs
index b102e48..d773ee7 100644
--- a/OpenSim/Region/Framework/Scenes/KeyframeMotion.cs
+++ b/OpenSim/Region/Framework/Scenes/KeyframeMotion.cs
@@ -645,7 +645,7 @@ namespace OpenSim.Region.Framework.Scenes
645 m_nextPosition = m_group.AbsolutePosition + motionThisFrame; 645 m_nextPosition = m_group.AbsolutePosition + motionThisFrame;
646 m_group.AbsolutePosition = m_nextPosition; 646 m_group.AbsolutePosition = m_nextPosition;
647 647
648 m_group.RootPart.Velocity = v; 648 //m_group.RootPart.Velocity = v;
649 update = true; 649 update = true;
650 } 650 }
651 651