mirror of
https://github.com/opensim/opensim.git
synced 2026-08-01 14:16:07 +08:00
Mantis #7928: show grid size and show regions now working. Integers were being overflown.
This commit is contained in:
@@ -799,14 +799,14 @@ namespace OpenSim.Services.GridService
|
||||
return;
|
||||
}
|
||||
|
||||
List<RegionData> regions = m_Database.Get(int.MinValue, int.MinValue, int.MaxValue, int.MaxValue, UUID.Zero);
|
||||
List<RegionData> regions = m_Database.Get(0, 0, int.MaxValue, int.MaxValue, UUID.Zero);
|
||||
|
||||
OutputRegionsToConsoleSummary(regions);
|
||||
}
|
||||
|
||||
private void HandleShowGridSize(string module, string[] cmd)
|
||||
{
|
||||
List<RegionData> regions = m_Database.Get(int.MinValue, int.MinValue, int.MaxValue, int.MaxValue, UUID.Zero);
|
||||
List<RegionData> regions = m_Database.Get(0, 0, int.MaxValue, int.MaxValue, UUID.Zero);
|
||||
|
||||
double size = 0;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user