mirror of
https://github.com/opensim/opensim.git
synced 2026-08-01 06:06:06 +08:00
Although there seems to sometimes be a problem of when you login again, old notecards and scripts will have their permissions messed up and you won't be able to even view their text. This seems to be related to the client's cache, and if you clear your client's cache, on the next login they should be fine again. [I have a couple of ideas about what might be causing this so hopefully will have it fixed soon.]
23 lines
564 B
C#
23 lines
564 B
C#
namespace OpenSim.Region.Capabilities
|
|
{
|
|
[LLSDType("MAP")]
|
|
public class LLSDCapsDetails
|
|
{
|
|
public string MapLayer = "";
|
|
public string NewFileAgentInventory = "";
|
|
//public string EventQueueGet = "";
|
|
// public string RequestTextureDownload = "";
|
|
// public string ChatSessionRequest = "";
|
|
public string UpdateNotecardAgentInventory = "";
|
|
public string UpdateScriptAgentInventory = "";
|
|
// public string ParcelVoiceInfoRequest = "";
|
|
|
|
public LLSDCapsDetails()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
|