mirror of
https://github.com/opensim/opensim.git
synced 2026-08-12 20:55:43 +08:00
* Patch from JHurliman
* Updates to libomv r2243, * Remove lots of unnecessary typecasts * Improves SendWindData() Thanks jhurliman. * Will update OpenSim-libs in 10 minutes..
This commit is contained in:
@@ -70,7 +70,7 @@ namespace OpenSim.Grid.AssetServer
|
||||
|
||||
if (p.Length > 0)
|
||||
{
|
||||
UUID assetID = null;
|
||||
UUID assetID = UUID.Zero;
|
||||
|
||||
if (!UUID.TryParse(p[0], out assetID))
|
||||
{
|
||||
|
||||
@@ -614,7 +614,7 @@ namespace OpenSim.Grid.GridServer
|
||||
//
|
||||
// this particular section of the mod attempts to receive a value from the region's xml file by way of
|
||||
// OSG1GridServices for the region's owner
|
||||
sim.owner_uuid = (string)requestData["master_avatar_uuid"];
|
||||
sim.owner_uuid = (UUID)(string)requestData["master_avatar_uuid"];
|
||||
|
||||
try
|
||||
{
|
||||
|
||||
@@ -52,7 +52,7 @@ namespace OpenSim.Grid.MessagingServer
|
||||
|
||||
public UUID getitem(int index)
|
||||
{
|
||||
UUID result = null;
|
||||
UUID result = UUID.Zero;
|
||||
lock (AgentList)
|
||||
{
|
||||
if (index > 0 && index < AgentList.Count)
|
||||
|
||||
@@ -63,7 +63,7 @@ namespace OpenSim.Grid.MessagingServer
|
||||
|
||||
if (p.Length > 0)
|
||||
{
|
||||
UUID assetID = null;
|
||||
UUID assetID = UUID.Zero;
|
||||
|
||||
if (!UUID.TryParse(p[0], out assetID))
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user