Add scripted controllers into agent intersim messaging

This commit is contained in:
Melanie Thielker
2010-07-11 14:26:57 +02:00
parent 922e874653
commit 7f0f11304f
3 changed files with 102 additions and 0 deletions

View File

@@ -4145,6 +4145,10 @@ namespace OpenSim.Region.Framework.Scenes
case 16:
_nextOwnerMask = ApplyMask(_nextOwnerMask, set, mask) &
baseMask;
// Prevent the client from creating no mod, no copy
// objects
if ((_nextOwnerMask & (uint)PermissionMask.Copy) == 0)
_nextOwnerMask |= (uint)PermissionMask.Transfer;
break;
}
SendFullUpdateToAllClients();