mirror of
https://github.com/opensim/opensim.git
synced 2026-06-27 00:55:48 +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.]
18 lines
290 B
C#
18 lines
290 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using libsecondlife;
|
|
|
|
namespace OpenSim.Region.Capabilities
|
|
{
|
|
[LLSDMap]
|
|
public class LLSDItemUpdate
|
|
{
|
|
public LLUUID item_id;
|
|
|
|
public LLSDItemUpdate()
|
|
{
|
|
}
|
|
}
|
|
}
|