* Blind fix what looks like a bug in the new land MSSQL code

* The data returned from the db was never inserted in the list to be processed and return
* This is an example where a warning has revealed a bug
0.6.0-stable
Justin Clarke Casey 2008-09-06 00:11:50 +00:00
parent de467f4903
commit a4078c280a
1 changed files with 1 additions and 1 deletions

View File

@ -547,7 +547,7 @@ namespace OpenSim.Data.MSSQL
{
while (readerLandData.Read())
{
LandData data = buildLandData(readerLandData);
landDataForRegion.Add(buildLandData(readerLandData));
}
}
}