aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorTeravus Ovares2008-10-09 11:44:26 +0000
committerTeravus Ovares2008-10-09 11:44:26 +0000
commitac674ccbfc0d3b2052f6408a8c99d19f27a1ddc0 (patch)
tree2a63ce55510da4094ca9f4ad4b63a9e54cb80d7f
parent* minor: remove compile warning (diff)
downloadopensim-SC_OLD-ac674ccbfc0d3b2052f6408a8c99d19f27a1ddc0.zip
opensim-SC_OLD-ac674ccbfc0d3b2052f6408a8c99d19f27a1ddc0.tar.gz
opensim-SC_OLD-ac674ccbfc0d3b2052f6408a8c99d19f27a1ddc0.tar.bz2
opensim-SC_OLD-ac674ccbfc0d3b2052f6408a8c99d19f27a1ddc0.tar.xz
* Fixes simstats reporter. I'm sure this issue caused all sorts of things related to regionflags and capacity. I'm sorry, the object capacity that you dialed is not valid.. please check the number and dial again.
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
index b2138aa..b1f4d7c 100644
--- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
@@ -2613,12 +2613,12 @@ namespace OpenSim.Region.ClientStack.LindenUDP
2613 public void SendSimStats(SimStats stats) 2613 public void SendSimStats(SimStats stats)
2614 { 2614 {
2615 SimStatsPacket pack = new SimStatsPacket(); 2615 SimStatsPacket pack = new SimStatsPacket();
2616 2616 pack.Region = new SimStatsPacket.RegionBlock();
2617 pack.Region.RegionX = stats.RegionX; 2617 pack.Region.RegionX = stats.RegionX;
2618 pack.Region.RegionY = stats.RegionY; 2618 pack.Region.RegionY = stats.RegionY;
2619 pack.Region.RegionFlags = stats.RegionFlags; 2619 pack.Region.RegionFlags = stats.RegionFlags;
2620 pack.Region.ObjectCapacity = stats.ObjectCapacity; 2620 pack.Region.ObjectCapacity = stats.ObjectCapacity;
2621 pack.Region = stats.RegionBlock; 2621 //pack.Region = //stats.RegionBlock;
2622 pack.Stat = stats.StatsBlock; 2622 pack.Stat = stats.StatsBlock;
2623 2623
2624 pack.Header.Reliable = false; 2624 pack.Header.Reliable = false;