* Tweaked patch mantis 1302 and committing it.

This commit is contained in:
Teravus Ovares
2008-05-17 00:16:16 +00:00
parent a5f08b430d
commit 349a17f664
8 changed files with 98 additions and 15 deletions

View File

@@ -331,6 +331,21 @@ namespace OpenSim.Region.Environment.Modules.World.NPC
set { }
}
public LLUUID ActiveGroupId
{
get { return LLUUID.Zero; }
}
public string ActiveGroupName
{
get { return String.Empty; }
}
public ulong ActiveGroupPowers
{
get { return 0; }
}
public virtual int NextAnimationSequenceNumber
{
get { return 1; }
@@ -743,4 +758,4 @@ namespace OpenSim.Region.Environment.Modules.World.NPC
}
#endregion
}
}
}

View File

@@ -882,7 +882,7 @@ namespace OpenSim.Region.Environment.Modules.World.Permissions
DebugPermissionInformation(MethodInfo.GetCurrentMethod().Name);
if (m_bypassPermissions) return m_bypassPermissionsValue;
return true;
return false;
}
private bool CanViewNotecard(LLUUID notecard, LLUUID objectID, LLUUID user, Scene scene)
@@ -890,7 +890,7 @@ namespace OpenSim.Region.Environment.Modules.World.Permissions
DebugPermissionInformation(MethodInfo.GetCurrentMethod().Name);
if (m_bypassPermissions) return m_bypassPermissionsValue;
return true;
return false;
}
#endregion