mirror of
https://github.com/opensim/opensim.git
synced 2026-08-09 02:36:00 +08:00
Fix problem where changes to media textures for prims duplicated by shify copy would change both prims until server restart
I also found out that you can crash the current viewer by giving it more media entrys than it's expecting
This commit is contained in:
@@ -1923,9 +1923,9 @@ namespace OpenSim.Region.CoreModules.World.Permissions
|
||||
if (null == me)
|
||||
return true;
|
||||
|
||||
m_log.DebugFormat(
|
||||
"[PERMISSIONS]: Checking CanControlPrimMedia for {0} on {1} face {2} with control permissions {3}",
|
||||
agentID, primID, face, me.ControlPermissions);
|
||||
// m_log.DebugFormat(
|
||||
// "[PERMISSIONS]: Checking CanControlPrimMedia for {0} on {1} face {2} with control permissions {3}",
|
||||
// agentID, primID, face, me.ControlPermissions);
|
||||
|
||||
return GenericPrimMediaPermission(part, agentID, me.ControlPermissions);
|
||||
}
|
||||
@@ -1949,9 +1949,9 @@ namespace OpenSim.Region.CoreModules.World.Permissions
|
||||
if (null == me)
|
||||
return true;
|
||||
|
||||
m_log.DebugFormat(
|
||||
"[PERMISSIONS]: Checking CanInteractWithPrimMedia for {0} on {1} face {2} with interact permissions {3}",
|
||||
agentID, primID, face, me.InteractPermissions);
|
||||
// m_log.DebugFormat(
|
||||
// "[PERMISSIONS]: Checking CanInteractWithPrimMedia for {0} on {1} face {2} with interact permissions {3}",
|
||||
// agentID, primID, face, me.InteractPermissions);
|
||||
|
||||
return GenericPrimMediaPermission(part, agentID, me.InteractPermissions);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user