Changed a couple of method in PermissionManager from private to protected to fix the error that ckrinke just reported

afrisby
MW 2007-08-02 13:06:21 +00:00
parent ad03c0dc69
commit 5fa0821531
2 changed files with 3 additions and 4 deletions

View File

@ -20,12 +20,12 @@ namespace OpenSim.Region.Environment
m_scene = world;
}
private virtual bool IsAdministrator(LLUUID user)
protected virtual bool IsAdministrator(LLUUID user)
{
return m_scene.RegionInfo.MasterAvatarAssignedUUID == user;
}
private virtual bool IsEstateManager(LLUUID user)
protected virtual bool IsEstateManager(LLUUID user)
{
return false;
}
@ -51,7 +51,7 @@ namespace OpenSim.Region.Environment
return false;
SceneObject task = (SceneObject)m_scene.Entities[obj];
LLUUID taskOwner; // Since we dont have a 'owner' property on task yet
LLUUID taskOwner = null; // Since we dont have a 'owner' property on task yet
// Object owners should be able to delete their own content
if (user == taskOwner)

View File

@ -316,7 +316,6 @@ namespace OpenSim.Region.Environment.Scenes
this.m_particleSystem = pSystem.GetBytes();
}
#region Position
/// <summary>
///