aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/LindenUDP
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2011-03-26 02:20:16 +0000
committerJustin Clark-Casey (justincc)2011-03-26 02:20:16 +0000
commitb11e3d33f112f4838ca8dde2d217780affbddce4 (patch)
tree8ff87088a94bb4f55d65f76d9f5c134dca5e4e83 /OpenSim/Region/ClientStack/LindenUDP
parentmove total parcel prim calculations into IPrimCounts instead of doing this in... (diff)
downloadopensim-SC_OLD-b11e3d33f112f4838ca8dde2d217780affbddce4.zip
opensim-SC_OLD-b11e3d33f112f4838ca8dde2d217780affbddce4.tar.gz
opensim-SC_OLD-b11e3d33f112f4838ca8dde2d217780affbddce4.tar.bz2
opensim-SC_OLD-b11e3d33f112f4838ca8dde2d217780affbddce4.tar.xz
add save of LLClientView I forgot from last commit
Diffstat (limited to 'OpenSim/Region/ClientStack/LindenUDP')
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs6
1 files changed, 2 insertions, 4 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
index 0b6b04d..f50637c 100644
--- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
@@ -4360,10 +4360,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP
4360 updateMessage.OwnerPrims = pc.Owner; 4360 updateMessage.OwnerPrims = pc.Owner;
4361 updateMessage.GroupPrims = pc.Group; 4361 updateMessage.GroupPrims = pc.Group;
4362 updateMessage.OtherPrims = pc.Others; 4362 updateMessage.OtherPrims = pc.Others;
4363 updateMessage.SimWideTotalPrims = pc.Simulator; 4363 updateMessage.TotalPrims = pc.Total;
4364 4364 updateMessage.SimWideTotalPrims = pc.Simulator;
4365 // FIXME: Need to do selected prims once this is reimplemented.
4366 updateMessage.TotalPrims = pc.Owner + pc.Group + pc.Others;
4367 4365
4368 // TODO: Need to transfer selected prims to new prim count structure. 4366 // TODO: Need to transfer selected prims to new prim count structure.
4369 updateMessage.SelectedPrims = landData.SelectedPrims; 4367 updateMessage.SelectedPrims = landData.SelectedPrims;