* ignored data recieved from closed sockets

* removed some warnings
This commit is contained in:
lbsa71
2007-06-12 18:47:36 +00:00
parent 75bdc185a9
commit 4d1d5eb0c6
4 changed files with 27 additions and 6 deletions

View File

@@ -237,7 +237,7 @@ namespace OpenSim.RegionServer.Simulator
}
}
}
catch (Exception e)
catch
{
return false; //Exception. For now, lets skip subdivision
}
@@ -294,7 +294,7 @@ namespace OpenSim.RegionServer.Simulator
startParcel = getParcel(start_x, start_y);
endParcel = getParcel(end_x, end_y);
}
catch (Exception e)
catch
{
return false; //Error occured when trying to get the start and end parcels
}

View File

@@ -478,7 +478,7 @@ namespace OpenSim.RegionServer.Simulator
this.Terrain.loadFromFileF32(this.m_regInfo.estateSettings.terrainFile);
this.Terrain *= this.m_regInfo.estateSettings.terrainMultiplier;
}
catch (Exception e)
catch
{
Console.WriteLine("Unable to load default terrain, procedurally generating instead...");
Terrain.hills();