Update svn properties. Add copyright headers. Minor formatting cleanup.

This commit is contained in:
Jeff Ames
2008-11-09 01:31:38 +00:00
parent bdf9add8d1
commit 8da726c3a8
26 changed files with 653 additions and 140 deletions

View File

@@ -84,7 +84,7 @@ namespace OpenSim.Region.Environment.Modules.Avatar.InstantMessage
void OnClientConnect(IClientCore client)
{
IClientIM clientIM;
if(client.TryGet(out clientIM))
if (client.TryGet(out clientIM))
{
clientIM.OnInstantMessage += OnInstantMessage;
}

View File

@@ -1335,7 +1335,7 @@ namespace OpenSim.Region.Environment.Modules.World.Land
m_landList.TryGetValue(localID, out land);
}
if(land == null) return;
if (land == null) return;
if (!m_scene.ExternalChecks.ExternalChecksCanEditParcel(remoteClient.AgentId, land))
return;