* Fixed attaching objects that are in-world.

This commit is contained in:
Teravus Ovares
2008-05-14 21:17:57 +00:00
parent 587f6ab645
commit e45ace9b54
2 changed files with 3 additions and 3 deletions

View File

@@ -118,11 +118,11 @@ namespace OpenSim.Region.Environment.Scenes
CanTakeObjectCheckFunctions.Remove(delegateFunc);
}
public bool ExternalChecksCanTakeObject(LLUUID objectID, LLUUID stealer)
public bool ExternalChecksCanTakeObject(LLUUID objectID, LLUUID AvatarTakingUUID)
{
foreach (CanTakeObject check in CanTakeObjectCheckFunctions)
{
if (check(objectID, stealer, m_scene) == false)
if (check(objectID, AvatarTakingUUID, m_scene) == false)
{
return false;
}