mirror of
https://github.com/opensim/opensim.git
synced 2026-08-04 16:22:50 +08:00
do export landmarks even if OutboundPermission is false
This commit is contained in:
@@ -218,7 +218,7 @@ namespace OpenSim.Region.CoreModules.Framework.InventoryAccess
|
||||
if (type == AssetType.Link)
|
||||
return;
|
||||
|
||||
if (IsForeignUser(avatarID, out string userAssetServer) && userAssetServer != string.Empty && m_OutboundPermission)
|
||||
if (IsForeignUser(avatarID, out string userAssetServer) && userAssetServer.Length > 0 && (m_OutboundPermission || (type == AssetType.Landmark)))
|
||||
{
|
||||
m_assMapper.Post(assetID, avatarID, userAssetServer);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user