From 74eafb78ebe854c5c36f489b92c8c68328e2a80d Mon Sep 17 00:00:00 2001 From: Melanie Date: Mon, 7 May 2012 23:03:07 +0200 Subject: Fix moving no-mod objects. Fixes a regression introduced with the undo fix --- OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'OpenSim/Region/ClientStack') diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs index 40ebed1..bb76717 100644 --- a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs @@ -11631,8 +11631,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP udata.scale = new Vector3(block.Data, 0); - // udata.change = ObjectChangeType.groupS; - udata.change = ObjectChangeType.primS; // to conform to current SL + udata.change = ObjectChangeType.groupS; updatehandler(localId, udata, this); break; @@ -11643,8 +11642,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP udata.position = new Vector3(block.Data, 0); udata.scale = new Vector3(block.Data, 12); - // udata.change = ObjectChangeType.groupPS; - udata.change = ObjectChangeType.primPS; // to conform to current SL + udata.change = ObjectChangeType.groupPS; updatehandler(localId, udata, this); break; -- cgit v1.1